1
0
Fork 0
mirror of https://git.sr.ht/~sircmpwn/useplaintext.email synced 2024-05-10 12:46:21 +02:00
useplaintext.email/css/style.css
Lucien Cartier-Tilet a875f938fd Uniquify CSS and SVG
CSS code in both HTML files is now deduplicated into a single CSS file
located at css/style.css

Same goes with the two identical SVG files, this commit only keeps one
at /assets/certified.svg
2023-02-22 09:52:31 +01:00

49 lines
706 B
CSS

body {
max-width: 800px;
margin: 0 auto;
font: 11pt monospace;
padding: 0 1rem;
}
ul li {
margin: 0.5rem 0;
}
.muted {
color: grey;
}
pre {
padding-left: 1rem;
max-width: 100%;
overflow-x: auto;
}
h2 a {
text-decoration: none;
color: black;
}
.breakdown {
display: flex;
justify-content: space-between;
}
@media(max-width: 720px) {
.breakdown {
display: block;
}
.breakdown span {
display: block;
}
}
.breakdown span {
padding: 0.5rem;
}
.green { background-color: rgba(0, 200, 0, 0.5); }
.green::before { content: '✓ '; }
.red { background-color: rgba(255, 50, 50, 0.5); }
.red::before { content: '✗ '; }