Mylloon
9f95eb2b6b
All checks were successful
ci/woodpecker/push/publish Pipeline was successful
- Style rework - Update dependencies to latest Close #33 Close #34 Reviewed-on: #35 Co-authored-by: Mylloon <kennel.anri@tutanota.com> Co-committed-by: Mylloon <kennel.anri@tutanota.com>
35 lines
348 B
CSS
35 lines
348 B
CSS
h2 {
|
|
padding-left: 1rem;
|
|
}
|
|
|
|
/* Element of lists */
|
|
main li {
|
|
display: inline-block;
|
|
}
|
|
|
|
main h1,
|
|
h2 {
|
|
font-weight: 800;
|
|
}
|
|
|
|
/* Links */
|
|
main a {
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
}
|
|
|
|
main a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
}
|
|
|
|
main p::after {
|
|
content: ", ";
|
|
}
|
|
|
|
main li:last-child p::after {
|
|
content: "";
|
|
}
|