54 lines
785 B
CSS
54 lines
785 B
CSS
body {
|
|
font-family: sans-serif;
|
|
margin: 40px;
|
|
}
|
|
|
|
section {
|
|
margin-bottom: 5px;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
padding: 0 10px;
|
|
align-items: center;
|
|
}
|
|
|
|
.title {
|
|
padding: 5px 0;
|
|
}
|
|
|
|
.title h3 {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.title .subtitle {
|
|
margin: 0;
|
|
font-size: 14px;
|
|
color: gray;
|
|
}
|
|
|
|
.meta {
|
|
text-align: end;
|
|
}
|
|
|
|
.when {
|
|
text-align: center;
|
|
}
|
|
|
|
section.up {
|
|
background-color: greenyellow;
|
|
}
|
|
|
|
section.alwaysup {
|
|
background-color: #c6ff6e;
|
|
background-image: linear-gradient(
|
|
45deg,
|
|
greenyellow 25%,
|
|
transparent 25%,
|
|
transparent 50%,
|
|
greenyellow 50%,
|
|
greenyellow 75%,
|
|
transparent 75%,
|
|
transparent
|
|
);
|
|
background-size: 50px 50px;
|
|
}
|