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/articles/static/style.css

167 lines
2.5 KiB
CSS

:root {
--accent: #226997;
--main: #111111;
--main2: #575757;
--main3: #7d7d7d;
--background: #ffffff;
--background2: #f7f7f7;
--background3: #d0d0d0;
}
html {
font-size: 110%;
max-width: calc(640px + 2em);
padding: 8px 0 3em;
margin: 0 auto;
}
body {
margin: 0 1em;
font-family: Arial, sans-serif;
color: var(--main);
background-color: var(--background);
}
p {
line-height: 1.7;
}
li {
line-height: 1.4;
}
body img {
max-width: 100%;
}
a {
color: var(--main);
text-decoration: none;
border-bottom: .3ex solid var(--accent);
}
a:hover, a:focus {
text-decoration: none;
background-color: var(--accent);
color: var(--background);
}
.article-list h2 a {
border-color: transparent;
}
.pic-container {
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
}
.pic-container .profile-pic {
max-width: 200px;
min-width: 100px;
max-height: 200px;
min-height: 100px;
border-radius: 10%;
padding: 1rem;
flex-shrink: 1;
flex-grow: 0;
}
.article-list + .article-list {
margin-top: 4em;
}
.article-list h2, .article-detail h1 {
margin-bottom: .2em;
}
.article-detail h1 {
font-size: 2em;
}
.date {
margin-top: .2em;
color: var(--main2);
}
.pagination {
display: flex;
justify-content: space-between;
}
code {
white-space: pre-wrap;
}
.codehilite {
border-radius: .5ex;
background-color: var(--background2);
}
.codehilite pre {
padding: 1em;
}
footer {
border-top: 2px solid var(--background2);
margin-top: 2em;
font-size: 80%;
color: var(--main3)
}
footer a {
color: var(--main3);
}
table {
border-collapse: collapse;
width: 100%;
}
th, td {
padding: 1ex;
text-align: left;
}
tr {
border-bottom: 1px solid var(--background3);
}
tr:hover {
background-color: var(--background2);
}
.pill {
font-size: 60%;
background-color: var(--main2);
color: var(--background2);
padding: .5ex 1ex;
border-radius: 1ex;
vertical-align: 15%;
}
@media (prefers-color-scheme: dark) {
:root {
--accent: #226997;
--main: #eeeeee;
--main2: #cecece;
--main3: #b1b1b1;
--background: #111111;
--background2: #282828;
}
img {
opacity: .75;
transition: opacity .2s ease-in-out;
}
img:hover {
opacity: 1;
}
#manage ul ul li img {
opacity: 1;
filter: invert(1);
}
}