-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathstyle_lib.css
More file actions
184 lines (154 loc) · 2.84 KB
/
style_lib.css
File metadata and controls
184 lines (154 loc) · 2.84 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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
:root{
--bgpaper: url(background/bgdark.png);
--font-color: #d9d9d9;
--link-color: #8dcfea;
--acc-color: #485058;
--acc-color-darker: #35393d;
--navlink-color: #d9d9d9;
--accsel-color: #729eac;
--tab-color: #485058;
}
[data-theme="dark"] {
--bgpaper: url(background/bglight.png);
--font-color: #424242;
--link-color: #0072AB;
--acc-color: #333333;
--acc-color-darker: #d8d8d8;
--navlink-color: #d9d9d9;
--accsel-color: #6d6d6d;
--tab-color: #bfe7bb;
}
* {box-sizing: border-box}
html {
font-size: 16px;
scroll-behavior: smooth;
}
body {
font-family: "Open Sans","Clear Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
color: var(--font-color);
/*background-color: var(--bg-color);*/
background-image: var(--bgpaper);
line-height: 1.2;
margin-left: 0px;
margin-right: 0px;
margin-top: 0px;
margin-bottom: 0px;
border-width: thin;
}
a {
color: var(--link-color);
text-decoration: none;
}
a:hover{
text-decoration: underline;
}
blockquote {
border-left: 4px solid #dfe2e5;
padding: 0 15px;
color: var(--font-color);
}
blockquote blockquote {
padding-right: 0;
}
/* 2 Columns for the library, for the fixed tab */
/* Style the tab */
.tab {
float: left;
border: 1px solid rgb(0, 0, 0);
background-color: var(--acc-color);
width: 20%;
height: 100%;
position: fixed;
}
/* Style the buttons inside the tab */
.tab button {
display: block;
background-color: var(--acc-color);
color: var(--navlink-color);
padding: 12px 16px;
width: 100%;
border: none;
outline: none;
text-align: left;
cursor: pointer;
transition: 0.3s;
font-size: 17px;
}
/* Change background color of buttons on hover */
.tab button:hover {
background-color: var(--accsel-color);
}
/* Create an active/current "tab button" class */
.tab button.active {
background-color: var(--accsel-color);
}
/* Style the tab content */
.tabcontent {
float: left;
padding: 0px 12px;
border-left: none;
width: 100%;
height: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
position: relative;
margin-top: 1rem;
margin-bottom: 1rem;
font-weight: bold;
line-height: 1.4;
cursor: text;
}
h1 {
padding-bottom: .3em;
font-size: 2.25em;
line-height: 1.2;
border-bottom-style: none;
}
table{
width: 100%;
}
table, th, td {
padding: 8px;
border: 1px solid rgb(160, 152, 152);
border-collapse: collapse;
line-height: 1.5;
}
.spoiler{
color: black;
background-color:black;
}
.spoiler:hover{
color: white;
}
.column {
float: left;
padding: 0;
}
.left {
width: 20%;
}
.right {
width: 80%;
}
.row:after {
content: "";
display: table;
clear: both;
}
#flower2 {
height: 225px;
overflow: scroll;
overflow-x: hidden;
width: 90%;
margin-left: auto;
margin-right: auto;
border-top-width: thin;
border-top-style: none;
border-bottom-width: thin;
border-bottom-style: none;
}