37 lines
553 B
CSS
37 lines
553 B
CSS
.two-split {
|
|
display: grid;
|
|
grid-template-columns: 1fr 4fr;
|
|
grid-auto-rows: 75px;
|
|
}
|
|
|
|
.three-split {
|
|
display: grid;
|
|
grid-template-columns: 1fr 4fr 1fr;
|
|
grid-auto-rows: 75px;
|
|
}
|
|
|
|
.grid-item-left {
|
|
display: flex;
|
|
align-items: center;
|
|
padding-left: 10%;
|
|
justify-content: left;
|
|
}
|
|
|
|
.grid-item-center {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.one-row {
|
|
grid-template-rows: 1fr;
|
|
}
|
|
|
|
.two-row {
|
|
grid-template-rows: 1fr 1fr;
|
|
}
|
|
|
|
.three-row {
|
|
grid-template-rows: 1fr 1fr 1fr;
|
|
}
|