Template:Research/styles.css: Difference between revisions
From Space Station 14 Wiki
(wip) |
(weh) |
||
Line 1: | Line 1: | ||
.research-card { | .research-card { | ||
display: grid; | display: grid; | ||
grid-template-columns: max-content | grid-template-columns: max-content 1111111fr; | ||
grid-template-rows: max-content max-content; | grid-template-rows: max-content max-content; | ||
width: 25rem; | width: 25rem; | ||
padding: .5rem; | |||
background-color: #30313c; | background-color: #30313c; |
Revision as of 18:42, 7 September 2024
.research-card {
display: grid;
grid-template-columns: max-content 1111111fr;
grid-template-rows: max-content max-content;
width: 25rem;
padding: .5rem;
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 {
}