beacon/static/style.css

135 lines
1.8 KiB
CSS

body {
font-family: sans-serif;
margin: 40px;
}
section {
margin-bottom: 5px;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
padding: 0 10px;
align-items: center;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
}
select {
width: 100%;
}
.header h1 {
margin: 0;
}
.title {
padding: 5px 0;
display: flex;
align-items: center;
gap: 5px;
}
.title h3 {
margin: 0;
padding: 0;
}
.title .subtitle {
margin: 0;
font-size: 14px;
color: gray;
}
.meta {
text-align: end;
}
.when,
.how {
text-align: center;
}
.when .date {
color: gray;
font-size: 14px;
}
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;
}
/* .catchpath:not(:first-of-type) {
margin-left: 5px;
} */
.catchpath {
align-items: center;
position: relative;
}
.catchpath img {
vertical-align: middle;
}
.hookset {
position: absolute;
top: -10px;
right: -10px;
}
.tug {
position: absolute;
background-color: black;
color: white;
bottom: -10px;
right: -10px;
padding: 2px;
font-size: 10px;
font-weight: bolder;
font-family: monospace;
}
.catchpath:not(:first-of-type)::before {
content: ">";
display: inline-block;
margin: 0 5px;
vertical-align: middle;
color: gray;
}
.catchpath:has(.tug) {
margin-right: 9px;
}
p,
li {
max-width: 50em;
line-height: 1.5rem;
}
h2.clock {
margin: 0;
margin-bottom: 5px;
}
summary:hover {
cursor: pointer;
}