-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstyle.css
87 lines (74 loc) · 1.28 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
body {
padding: 0;
margin: 0;
background-color: #ffffff;
color: #000000;
font-family: Courier, 'Courier New', monospace;
font-size: 16px;
-webkit-font-smoothing: antialiased;
overflow-x: none;
}
#spiral {
position: fixed;
top: 1rem;
left: 1rem;
width: 110px;
height: 110px;
fill: #000000;
}
div#container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100vw;
}
#quote {
max-width: 40rem;
max-height: 100%;
margin: 0;
}
#quote blockquote {
margin: 0 0 1em 0;
text-indent: -0.6em;
font-size: 2rem;
line-height: 1.25em;
quotes: "“" "”" "‘" "’";
}
@supports ( hanging-punctuation: first) {
#quote blockquote {
text-indent: 0;
hanging-punctuation: first;
}
}
#quote blockquote::before {
content: open-quote;
}
#quote blockquote::after {
content: close-quote;
}
a#quote__article-title {
font-style: normal;
color: inherit;
text-decoration: none;
border-bottom: 1px dotted;
line-height: 1.5;
}
a#quote__article-title::before {
content: "— ";
}
a#quote__article-title:hover {
border-bottom-style: solid;
}
.loading {
display: none;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #000000;
color: #cdcdcda6;
}
#spiral {
fill: #cdcdcda6;
}
}