zim-style.css
3.28 KB
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
/* Common zim definitions */
a { text-decoration: none;
color: var(--main-link-color);}
a:link { text-decoration: none;
color: var(--main-link-color);}
a:hover { text-decoration: none;
color: var(--main-link-color);}
a:active { text-decoration: none;
color: var(--main-link-color);}
a:visited { text-decoration: none;
color: var(--main-link-color);}
strike { color: var(--main-strike-color);}
u { text-decoration: var(--main-menu-u-decoration);
background-color: var(--main-menu-u-background-color);}
tt { color: var(--main-tt-color);
font-family: monospace;
font-size: large}
pre { color: var(--main-pre-color);
margin-left: 20px;
margin-right: 5px;
margin-bottom: 5px;
margin-top: 5px;
font-family: monospace;
font-size: large }
code { font-size: large; font-family: monospace; color: var(--main-code-color)}
h1 { text-decoration: underline;
color: var(--main-header-color);
margin-bottom: 0;
margin-top: 1em; }
h2 { color: var(--main-header-color);
margin-bottom: 0;
margin-left: 20px;
margin-top: 1em;}
h3 { color: var(--main-header-color);
margin-bottom: 0;
margin-left: 40px;
margin-top: 1em;
font-style: italic; }
h4 { color: var(--main-header-color);
margin-bottom: 0;
margin-left: 60px;
margin-top: 1em;}
h5 { color: var(--main-header-color);
margin-bottom: 0;
margin-left: 80px;
margin-top: 1em;}
p { margin-top: 0 }
.notice {
margin-top:20px;
font-size:small;
}
#upBtn {
display: none;
position: fixed;
bottom: 20px;
right: 30px;
z-index: 99;
font-size: 18px;
border: none;
outline: none;
background-color: #7777;
color: white;
cursor: pointer;
padding: 15px;
border-radius: 4px;
}
#upBtn::before {
border-style: solid;
border-width: 0.25em 0.25em 0 0;
content: '';
display: inline-block;
height: 0.45em;
left: 0.15em;
position: relative;
top: 0.15em;
transform: rotate(-45deg);
vertical-align: top;
width: 0.45em;
margin-left:-0.25em;
}