Template:Research/styles.css: Difference between revisions
From Space Station 14 Wiki
(wip) |
(wip) |
||
Line 4: | Line 4: | ||
grid-template-rows: max-content max-content; | grid-template-rows: max-content max-content; | ||
width: | width: 25rem; | ||
background-color: #30313c; | |||
border-top: 10px solid; | |||
} | } | ||
Line 18: | Line 21: | ||
display: flex; | display: flex; | ||
flex-direction: column; | flex-direction: column; | ||
gap: .25rem; | |||
} | } | ||
.research-card-header-text { | .research-card-header-text { | ||
color: #a88b5e; | |||
font-size: large; | |||
font-weight: bold; | |||
border-bottom: 2px solid #3d4059; | |||
padding-bottom: .25rem; | |||
} | } | ||
Revision as of 18:41, 7 September 2024
.research-card {
display: grid;
grid-template-columns: max-content max-content;
grid-template-rows: max-content max-content;
width: 25rem;
background-color: #30313c;
border-top: 10px solid;
}
.research-card-icon {
grid-row: 1 / 2;
grid-column: 1 / 2;
}
.research-card-header {
grid-row: 1 / 2;
grid-column: 2 / 3;
display: flex;
flex-direction: column;
gap: .25rem;
}
.research-card-header-text {
color: #a88b5e;
font-size: large;
font-weight: bold;
border-bottom: 2px solid #3d4059;
padding-bottom: .25rem;
}
.research-card-header-discipline-icon {
}
.research-card-header-tier-and-discipline {
}
.research-card-body {
grid-row: 2 / 3;
grid-column: 1 / 3;
display: flex;
flex-direction: column;
}
.research-card-body-cost {
}
.research-card-body-unlocks {
}