aboutsummaryrefslogtreecommitdiff
path: root/public/style.css
blob: a9e85f5c4c29479f483996759ed79afb5cc73c48 (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
* {
    box-sizing: border-box;
}
body {
    font-family: "Verdana", sans-serif;
    line-height: 1.4;
    font-size: 13px;
    margin: 0 auto;
    max-width: 470px;
    padding: 0 10px 10px;
}
h1{font-size:18px;margin-top:1em;}
h2,
h3,
h4,
h5,
h6 {
  font-size: 15px;
    margin: 2em 0 0;
}
blockquote {
    border-left: 4px solid;
    margin: 2em 0 2em 2em;
    padding: 2px 8px;
}
blockquote p {
  font-style: italic;
  margin: 0;
  padding: 0;
}
img {
    max-width: 100%;
}
pre {
    border: 1px solid;
    overflow: auto;
    padding: 5px;
}
table {
    text-align: left;
    width: 100%;
}
nav {
  border-bottom: 1px solid;
  padding: 10px 0;
}
nav a:last-of-type {
  float: right;
}
#menu,
.posts {
    list-style: none;
    padding: 0;
}
.posts li {
    margin-bottom: 8px;
}
.posts li span {
    display: block;
    font-size: 90%;
}
#menu li {
    display: inline-block;
    margin-right: 8px;
}
figure {
  margin: 3em 0;
}
figure img {
  width: 100%;
}
figcaption {
    font-size: 90%;
}
footer {
  border-top: 1px solid;
  margin: 2em 0;
}
.footnotes {
    font-size: 90%;
}
@font-face {
    font-family: 'Monaspace';
    src: url('/public/fonts/MonaspaceKrypton-SyntaxHighlighter-Regular.woff2') format('woff2');
}
code {
    font-family: "Monaspace",monospace;
    background-color: #000;
    color: #f1f1f1;
    border-radius: 0.2rem;
    padding: 0.1rem;
}
pre:has(code) {
    border: 2px solid #f9f9f9;
    background-color: #000;
    color: #f1f1f1;
    padding: 0.5rem;
    border-radius: 0.5rem;
}