commit 8d0a2d170b4976499f48727c624f9916a9d26e64
parent 62a33afde9109b39aa8cbfbb70e7fa03bfd62ff7
Author: Jake Bauer <jbauer@paritybit.ca>
Date: Wed, 8 Mar 2023 21:39:51 -0500
Remove style.css
I just edit the minified CSS in templates/header.html these days.
Diffstat:
D | static/style.css | | | 139 | ------------------------------------------------------------------------------- |
1 file changed, 0 insertions(+), 139 deletions(-)
diff --git a/static/style.css b/static/style.css
@@ -1,139 +0,0 @@
-body {
- background-color: #fcfcfc;
- color: #111;
- line-height: 1.5rem;
- max-width: 660px;
- margin: 0 auto;
- padding: 0.5em 0 3em 0;
- font-family: "IBM Plex Serif", serif;
-}
-
-header {
- text-align: center;
- margin: 0.7em auto;
- font-size: 2em;
- font-weight: bold;
-}
-
-h1 {
- font-style: oblique;
- margin-bottom: 0em;
- line-height: 1.1em;
- font-size: 1.7em;
-}
-
-h2, h3, h4, h5, h6 {
- margin: 1.4em 0 -0.3em 0;
- line-height: 1.1em;
-}
-
-nav {
- text-align: center;
-}
-
-nav a {
- padding: 0em 0.5em;
- font-size: 1.1rem;
- font-weight: bold;
- text-decoration: none;
-}
-
-nav a:hover {
- text-decoration: underline;
-}
-
-a, nav a:visited{
- color: #134799;
-}
-
-a:hover {
- text-decoration: none;
-}
-
-a:visited {
- color: #551a8b;
-}
-
-img, video {
- max-width: 100%;
-}
-
-figcaption {
- margin-bottom: 1.5em;
-}
-
-blockquote {
- border-left: 3px solid #134799;
- padding-left: 0.5em;
-}
-
-details {
- margin-left: 1.5em;
-}
-
-details p:first-of-type {
- margin-top: 0.5em;
-}
-
-summary:hover {
- cursor: pointer;
- background-color: #ddd;
-}
-
-table, th, td {
- border: 1px solid #666;
- border-collapse: collapse;
- text-align: left;
- margin-top: 1em;
- padding: 3px;
-}
-
-th {
- background-color: #ccc;
-}
-
-pre {
- background-color: #ddd;
- overflow: auto;
- padding: 0.5em;
- line-height: 1.1rem;
- border: 1px black solid;
-}
-
-code {
- background-color: #ddd;
- font-family: "IBM Plex Mono", monospace;
- font-size: 0.9rem;
-}
-
-.note {
- border: 3px solid #134799;
- padding: 10px 15px;
-}
-
-.date {
- font-size: smaller;
- color: #565151;
-}
-
-#icons {
- float: right;
-}
-
-@media print {
- pre {
- white-space: pre-wrap;
- }
- nav {
- display: none;
- }
-}
-
-@media only screen and (max-width: 1000px) {
- body {
- max-width: 90%;
- }
- #icons {
- float: none;
- }
-}