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

84 lines
1 KiB
CSS
Raw Permalink Normal View History

body {
/* Overriding so that it doesn't change even when updating the library. */
2022-03-30 20:27:07 +02:00
max-width: 64ch;
}
2023-03-24 09:04:51 +01:00
h1,
h2 {
font-weight: 900;
}
h1,
h2,
h3 {
2020-12-31 13:49:56 +01:00
border-bottom: unset;
}
2023-03-02 13:19:58 +01:00
h3 {
font-size: 1.35rem;
}
h4 {
font-size: 1.1rem;
}
h5 {
font-size: 0.9rem;
}
h6 {
font-size: 0.7rem;
}
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;
}
2021-12-28 12:40:42 +01:00
.toclink {
color: var(--nc-tx-1);
text-decoration: none;
}
2022-06-28 23:25:20 +02:00
#metadata {
margin-bottom: 1.5rem;
}
#articles-list time {
display: inline-block;
min-width: 11ex;
}
@media (max-width: 720px) {
#articles-list time {
display: block;
}
}