indicate best catch path

This commit is contained in:
insects 2025-02-05 22:32:23 +01:00
parent e04a98a7fd
commit dc3f955b1b
3 changed files with 150 additions and 7 deletions

View file

@ -6,7 +6,7 @@ body {
section {
margin-bottom: 5px;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr 1fr;
padding: 0 10px;
align-items: center;
}
@ -30,7 +30,8 @@ section {
text-align: end;
}
.when {
.when,
.how {
text-align: center;
}
@ -52,3 +53,42 @@ section.alwaysup {
);
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;
}