git.alexw.nyc home about git garden
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51
   52
   53
   54
:root {
  --bg: #fff;
  --text: #000;
  --border: #677;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #000;
    --text: #fff;
    --border: #aaa;
  }
}
body {
  font-size:18px;
  background-color: var(--bg);
  color: var(--text);
  margin: 0;
  font-family: Helvetica, Arial, Sans-serif;
  word-wrap: break-word;
  line-height: 1.5;
  max-width: 800px;
}

main {
  padding: 15px;
}

header { 
  border-bottom: 1px solid var(--border); 
  padding: 0.3rem;
  margin: 0;
}

footer {
  border-top: 1px solid var(--border);
  padding: 0.3rem;
  text-align: right;
}

nav ul {  list-style-type: none }
ul { 
  list-style-type: square ;
  padding-left: 1rem;
}
hr { color: var(--border) }
blockquote { font-style: italic; }
a, a:visited { color: var(--text); }
h1, h2, h3, h4, h5, h6{ margin-top: 0; margin-bottom:.2em; }
p { margin-top: 0.4rem; margin-bottom: .4rem; line-height: 1.5; }
a:hover { text-decoration: none }

main a[href^="http"]:where(:not([href*="alexw.nyc/"]))::after{ content: "︎↗" }
figure a::after{ content: "" !important }