]> git.r.bdr.sh - rbdr/r.bdr.sh/blame_incremental - css/style.css
Use tomato instead of barthes
[rbdr/r.bdr.sh] / css / style.css
... / ...
CommitLineData
1body {
2 font-family: "Times New Roman", Times, serif;
3 line-height: 1.6;
4 letter-spacing: 0.02em;
5}
6
7@media only screen and (min-width: 500px) {
8 body {
9 overflow-x: auto;
10 }
11
12 .columned {
13 height: calc(100vh - 180px);
14 width: max-content;
15 }
16
17 .columned .h2 {
18 float: left;
19 margin: 0 40px;
20 height: calc(100vh - 180px);
21 }
22
23 .columned h2 {
24 width: 14.6em;
25 }
26
27 .columned .h3, .columned p {
28 width: 22em;
29 break-inside: prevent;
30 }
31
32 .columned pre { width: 25em }
33}
34
35blockquote, p { max-width: 45em }
36pre { max-width: 55em }
37blockquote {
38 border-left: 4px solid #ccc;
39 padding-left: 10px;
40}
41
42h1, h2, h3 { font-weight: normal }
43br { display: none }
44pre {
45 font-family: Monaco, monospace;
46 font-size: 14px;
47 background-color: #eee;
48 overflow-x: auto;
49}
50
51canvas {
52 width: 64px;
53 height: 64px;
54 display: inline-block;
55 background-color: gainsboro;
56}
57
58@media (prefers-color-scheme: dark) {
59 body {
60 color: #fff;
61 background: #000;
62 }
63
64 a {
65 color: #5dc1fd;
66 }
67
68 a:visited {
69 color: #ed6eff;
70 }
71
72 pre {
73 background-color: #222;
74 }
75}