repos / pgit

static site generator for git
git clone https://github.com/picosh/pgit.git

commit
a9efb6d
parent
cdca8c4
author
Eric Bower
date
2024-05-10 01:46:40 +0000 UTC
styles: update
1 files changed,  +25, -20
M static/smol.css
+25, -20
  1@@ -54,8 +54,7 @@ pre {
  2 code,
  3 kbd,
  4 samp {
  5-  background-color: var(--code);
  6-  border: 1px solid var(--code-border);
  7+  border: 2px solid var(--code);
  8 }
  9 
 10 pre > code {
 11@@ -65,8 +64,9 @@ pre > code {
 12 }
 13 
 14 code {
 15+  font-size: 90%;
 16   border-radius: 0.3rem;
 17-  padding: 0.15rem 0.2rem 0.05rem;
 18+  padding: 0.15rem 0.3rem 0.05rem;
 19 }
 20 
 21 pre {
 22@@ -96,18 +96,6 @@ h3 {
 23   font-size: inherit;
 24 }
 25 
 26-h1 > code {
 27-  font-size: inherit;
 28-}
 29-
 30-h2 > code {
 31-  font-size: inherit;
 32-}
 33-
 34-h3 > code {
 35-  font-size: inherit;
 36-}
 37-
 38 path {
 39   fill: var(--text-color);
 40   stroke: var(--text-color);
 41@@ -118,18 +106,19 @@ hr {
 42   border: 0;
 43   margin: 0;
 44   height: 2px;
 45-  background: var(--border);
 46+  background: var(--grey);
 47   margin: 1rem auto;
 48   text-align: center;
 49 }
 50 
 51 a {
 52-  text-decoration: underline;
 53+  text-decoration: none;
 54   color: var(--link-color);
 55 }
 56 
 57 a:hover,
 58 a:visited:hover {
 59+  text-decoration: underline;
 60   color: var(--hover);
 61 }
 62 
 63@@ -380,6 +369,10 @@ figure {
 64   margin-left: 0.5rem;
 65 }
 66 
 67+.pt-0 {
 68+  padding-top: 0;
 69+}
 70+
 71 .my {
 72   margin-top: 0.5rem;
 73   margin-bottom: 0.5rem;
 74@@ -464,6 +457,12 @@ figure {
 75   gap: 0.5rem;
 76 }
 77 
 78+.group-2 {
 79+  display: flex;
 80+  flex-direction: column;
 81+  gap: 1rem;
 82+}
 83+
 84 .group-h {
 85   display: flex;
 86   gap: 0.5rem;
 87@@ -486,6 +485,10 @@ figure {
 88   justify-content: end;
 89 }
 90 
 91+.font-grey-light {
 92+  color: var(--grey-light);
 93+}
 94+
 95 .hidden {
 96   display: none;
 97 }
 98@@ -494,10 +497,8 @@ figure {
 99   text-align: right;
100 }
101 
102-/* ==== HELPERS ==== */
103-
104 .box {
105-  border: 2px solid var(--border);
106+  border: 2px solid var(--grey-light);
107   padding: 0.5rem 0.75rem;
108 }
109 
110@@ -509,4 +510,8 @@ figure {
111   header {
112     margin: 0;
113   }
114+
115+  .flex-collapse {
116+    flex-direction: column;
117+  }
118 }