-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
90 lines (77 loc) · 1.31 KB
/
style.css
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
body {
font-family: "Merriweather Sans", "Benton Sans", "Helvetica Neue", helvetica,
arial, sans-serif;
font-size: 1.2em;
margin: 2em;
}
h2 {
margin-top: 2em;
margin-bottom: 1em;
}
main,
footer {
max-width: 960px;
margin: 0 auto;
}
.site-footer {
margin-top: 4em;
border-top: 1px solid gray;
padding-top: 2em;
}
blockquote {
/* Courtesy of css-tricks.com. */
background: #f9f9f9;
border-left: 10px solid #ccc;
margin: 2em auto 3em;
padding: 0.5em 1em 1em 0;
quotes: "\201C""\201D""\2018""\2019";
}
blockquote:before {
color: #ccc;
content: "“";
font-size: 4em;
line-height: 0.1em;
margin-right: 0.25em;
vertical-align: -0.4em;
}
blockquote p,
blockquote footer {
line-height: 1.5em;
padding: 0 40px;
}
blockquote footer {
font-size: 0.9em;
margin-bottom: 1em;
}
iframe {
display: block;
margin: 0 auto;
}
textarea.code {
width: 100%;
min-height: 3em;
padding: 1em;
font-family: monospace;
font-size: 1.2em;
}
@media (prefers-color-scheme: dark) {
body {
background: #121212;
color: #ffffff;
}
blockquote {
/* Courtesy of css-tricks.com. */
background: #282828;
border-left: 10px solid #3f3f3f;
}
textarea {
background: #282828;
color: #ffffff;
}
a {
color: #8b8b8b;
}
a:hover {
color: #575757;
}
}