You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
690 B
CSS

2 years ago
html,
body {
margin: 3mm;
font-family: sans-serif;
font-size: 32px;
line-height: 1.6;
}
body * {
display: inline;
}
img {
height: 1.6rem;
vertical-align: middle;
width: auto;
}
li:first-child img {
2 years ago
height: 4rem;
2 years ago
vertical-align: bottom;
}
ul {
display: block;
padding: 0;
margin: 0;
}
ul + ul {
margin-top: 1rem;
}
li:after {
content: "⟶";
}
li:last-of-type:after {
content: "";
}
em {
display: inline-block;
font-weight: bold;
border: 2px solid currentColor;
height: 1rem;
padding: 0 0.3rem;
border-radius: 1rem;
text-align: center;
vertical-align: middle;
font-style: normal;
font-size: 0.6rem;
line-height: 1rem;
}
2 years ago
code {
background-color: #eee;
}