indicate best catch path
This commit is contained in:
parent
e04a98a7fd
commit
dc3f955b1b
3 changed files with 150 additions and 7 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue