aboutsummaryrefslogtreecommitdiff
path: root/www/assets/base-style.css
blob: 4ee87d6cb1eff06cb43842206585320bb46575fe (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
106
107
108
109
110
111
112
113
114
115
html {
  width: 100%;
}

* {
  box-sizing: border-box;
}

body {
  width: 100%;
  margin: 0;
  --fg-color: black;
  --bg-color: white;
  color: var(--fg-color);
  background-color: var(--bg-color);
}

.mono {
  font-family: monospace;
}

a.mono-link,
.mono-link a,
.mono-link .fake-link {
  font-family: monospace;
}

.toast {
  font-size: large;
  font-family: monospace;
  color: var(--bg-color);
  background-color: var(--fg-color);
  padding: 0.5em 0.3em;
  border-radius: 6px;

  position: fixed;
  z-index: 1;
  top: 4px;
  left: 50vw;
  transform: translateX(-50%);
}

.chroma {
  overflow-x: scroll;
  padding-left: 1px;
  padding-right: 4px;
  border-radius: 3px;
}

nav {
  font-size: large;
}

#slogan {
  color: white;
  width: 100%;
  padding: 0.5em 1em;
  text-align: center;
  background-color: dodgerblue;
  user-select: none;

  & > * {
    user-select: text;
  }
}

#main-article {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  max-width: 880px;
  padding: 0 1em;
  margin-top: 1em;
}

#license a {
  font-family: initial;
  text-decoration: none;
}

#license-text {
  font-family: monospace;
  text-decoration: initial;
}

#license-img-container img {
  height: 1em;
  vertical-align: middle;
}

body[data-theme="dark"] {
  --fg-color: white;
  --bg-color: black;

  & a:link {
    color:#34ffd9;
  }

  & a:visited {
    color:#abcac4;
  }

  & #slogan {
    color: var(--fg-color);
    background-color: midnightblue;
  }

  & :is(.chroma,.chroma *) {
    background-color: hsl(0, 0%, 1.5%);

    & .n {
      color: var(--fg-color);
    }
  }
}