This repository has been archived on 2023-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
python-blog/src/articles/static/public.css

43 lines
608 B
CSS
Raw Normal View History

body {
/* Overriding so that it doesn't change even when updating the library. */
max-width: 750px;
}
h1,
h2,
h3 {
2020-12-31 13:49:56 +01:00
border-bottom: unset;
}
2021-01-03 22:14:55 +01:00
img {
border-radius: 5px;
}
footer {
font-size: 80%;
color: var(--nc-tx-2);
}
footer > :first-child {
margin-top: 1em;
}
2021-01-03 19:39:32 +01:00
nav a:not(:first-child):before,
a.tag:not(:first-of-type):before {
content: "\00B7";
2021-01-03 22:16:07 +01:00
margin: 0 5px;
2021-01-03 19:39:32 +01:00
color: var(--nc-tx-1);
text-decoration: none;
display: inline-block;
}
2021-12-27 22:41:32 +01:00
#reply {
text-align: center;
margin-top: 2em;
}
#reply a button {
font-size: 1.2rem;
padding: 8px 16px;
}