s1llyw0rdz/assets/style.css

36 lines
472 B
CSS
Raw Normal View History

2021-11-22 20:23:30 +00:00
body {
max-width: 940px;
margin: 0 auto;
padding: 1em;
font-family: Verdana;
}
section {
padding: 1em;
background-color: peachpuff;
}
.cols {
display: grid;
row-gap: 1em;
}
.status-username {
font-weight: bold;
margin-bottom: .5em;
}
.status-content {
margin: 0 1em;
}
.status {
margin-bottom: 1em;
}
2021-11-22 20:23:30 +00:00
@media (min-width: 650px) {
.cols {
grid-template-columns: repeat(2, 1fr);
grid-gap: 1em;
}
}