-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorial.css
More file actions
36 lines (28 loc) · 891 Bytes
/
Copy pathtutorial.css
File metadata and controls
36 lines (28 loc) · 891 Bytes
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
div.page { margin: auto; max-width: 700px; padding: 1px 20px 20px 20px; }
#vostokbox-log { height:130px; }
p { hyphens: auto; text-align: justify; }
code { font-size: 1.1em; }
footer {
display: flex;
justify-content: space-between;
align-items: center;
}
button { margin: 1px; }
@media (max-width: 500px) {
div.page { padding : 1px 6px 6px; }
}
@media (max-width: 400px) {
div.page { padding : 1px 3px 3px; }
}
@media (prefers-color-scheme: dark) {
body { background-color:#000; }
div.page { background-color:#222; }
pre, pre code, p code { color:white; background-color:#2A2A2A; }
}
@media (prefers-color-scheme: light) {
body { background-color:#666; }
div.page { background-color:white; color: #282828; }
pre, pre code, p code { color:#000; background-color:#F8F8F8; }
button { background-color:#DDD; }
}
.vostokbox-log-out { background-color:inherit; }