aboutsummaryrefslogtreecommitdiff
path: root/xess/xess.css
blob: 86cbd423b7731673b8628dcaf0239b2bf3143977 (plain)
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("./static/geist.woff2") format("woff2");
}

@font-face {
  font-family: "Podkova";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("./static/podkova.woff2") format("woff2");
}

@font-face {
  font-family: "Iosevka Curly";
  font-style: monospace;
  font-display: swap;
  src: url("./static/iosevka-curly.woff2") format("woff2");
}

main {
  font-family: Geist, sans-serif;
  max-width: 50rem;
  padding: 2rem;
  margin: auto;
}

::selection {
  background: #d3869b;
}

body {
  background: #1d2021;
  color: #f9f5d7;
}

pre {
  background-color: #3c3836;
  padding: 1em;
  border: 0;
  font-family: Iosevka Curly Iaso, monospace;
}

a,
a:active,
a:visited {
  color: #b16286;
  background-color: #282828;
}

h1,
h2,
h3,
h4,
h5 {
  margin-bottom: 0.1rem;
  font-family: Podkova, serif;
}

blockquote {
  border-left: 1px solid #bdae93;
  margin: 0.5em 10px;
  padding: 0.5em 10px;
}

footer {
  text-align: center;
}

@media (prefers-color-scheme: light) {
  body {
    background: #f9f5d7;
    color: #1d2021;
  }

  pre {
    background-color: #ebdbb2;
    padding: 1em;
    border: 0;
  }

  a,
  a:active,
  a:visited {
    color: #b16286;
    background-color: #fbf1c7;
  }

  h1,
  h2,
  h3,
  h4,
  h5 {
    margin-bottom: 0.1rem;
  }

  blockquote {
    border-left: 1px solid #655c54;
    margin: 0.5em 10px;
    padding: 0.5em 10px;
  }
}