-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
128 lines (108 loc) · 3.01 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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
body {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 0;
padding: 0;
}
.mono {
font-family: 'Roboto Mono', monospace;
}
.sans {
font-family: 'Roboto', sans-serif;
}
.serif {
font-family: 'Noto Serif JP', serif;
}
.settings {
text-align: center;
border-color: 1px;
background-color: #eee;
position: fixed;
right: 0;
bottom: 0;
opacity: 0;
transition: opacity 0.2s;
}
.settings:hover {
opacity: 1;
}
.settings button {
border: none;
background: none;
text-transform: capitalize;
cursor: pointer;
transition: opacity 0.2s;
}
.settings button:hover {
opacity: 0.6;
}
.settings .modes button {
font-size: 0.8rem;
}
.settings .action {
padding: 0.4rem;
}
.settings .size button {
font-size: 1rem;
}
.settings .fonts button {
font-size: 1.2rem;
display: inline-block;
text-align: center;
}
.settings small {
font-size: 0.8rem;
float: left;
}
.light {
color: rgba(0, 0, 0, 0.9);
background-color: #ffffff !important;
}
.dark {
color: rgba(255, 255, 255, 0.9);
background-color: rgb(25, 25, 25) !important;
}
.dash {
opacity: 0.2;
}
hr {
border: none;
border-bottom: 1px solid gray;
opacity: 0.2;
padding: 0;
margin: 0;
margin-bottom: 0.4rem;
}
blockquote {
font-family: Tahoma, sans-serif;
font-size: 20px;
width: 60%;
margin: 0 auto;
}
blockquote h1 {
font-size: 4.7rem;
}
blockquote p {
font-style: italic;
margin-bottom: 5px;
}
blockquote p::before,
blockquote p::after {
content: "“";
font-family: Georgia;
font-size: 5.5rem;
margin: -2rem 0 0 -4rem;
position: absolute;
opacity: 0.5;
}
blockquote p::after {
content: "”";
margin: -.5rem -4rem 0 1rem;
}
blockquote cite {
font-size: 1.2rem;
color: gray;
}