-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.css
77 lines (67 loc) · 1.22 KB
/
index.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
@import url(//cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css);
:root {
--base-font-size: 14px;
--sidebar-width: 21em;
--code-font-size: 12px;
--content-max-width: 75em;
--link-color: white;
}
.sidebar>h1 .app-name-link, .app-nav li a {
color: #d3d3d3;
}
.app-nav>ul>li ul {
width: 10em;
}
.app-nav:not(:empty) ~ main .markdown-section {
padding-top: 5rem;
}
@media screen and (max-width: 768px) {
.app-nav>ul>li:not(:last-child) {
display: none;
}
}
.sidebar > .app-name {
text-align: left;
padding-left: 15px;
}
.app-name-link {
font-size: 2rem;
}
@media screen and (min-width: 768px) {
.markdown-section img {
max-width: 50%;
}
}
.markdown-section video {
max-width: 50%;
}
.medium-zoom-image {
border: 1px solid white;
box-shadow: 0 0 5px #46464685;
}
.markdown-section {
padding-bottom: 100vh;
}
.emoji {
height: 1rem;
}
#chapter-nav {
display: flex;
margin-top: 5em;
}
#chapter-nav a {
flex: 1;
padding: 0.5em 1em;
border: 1px solid #ffffff7a;
border-radius: 0.5em;
text-decoration: none;
}
#chapter-nav .title {
font-size: 1.2em;
color: azure;
text-decoration: underline;
}
#chapter-nav .next {
margin-left: 1em;
text-align: right;
}