mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:38:12 +00:00
16 lines
No EOL
362 B
HTML
16 lines
No EOL
362 B
HTML
<style>
|
|
* {
|
|
font: 16px SerenitySans;
|
|
}
|
|
.container {
|
|
display: grid;
|
|
background-color: lightsalmon;
|
|
grid-template-columns: auto auto;
|
|
gap: calc(1vh + 10px) calc(10% - 10px);
|
|
}
|
|
|
|
.item {
|
|
background-color: palevioletred;
|
|
}
|
|
</style>
|
|
<div class="container"><div class="item" style="grid-column: 2 / span 1">1</div><div class="item">2</div></div> |