xref: /template/readthedokus/css/basic.css (revision 42b5cdaef752d66801bb1ce3efa8ce41ce67c5d1)
1* {
2	box-sizing: border-box;
3	-webkit-box-sizing: border-box;
4	-moz-box-sizing: border-box;
5}
6
7html
8{
9	font-size: 16px;
10	height: 100%;
11	-webkit-text-size-adjust: 100%;
12	-ms-text-size-adjust: 100%
13}
14
15body,html
16{
17	overflow-x: hidden;
18}
19
20body
21{
22    background-color: __background_alt__;
23    color: __text__;
24    font-family: Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;
25    font-weight: 400;
26	margin: 0;
27    min-height: 100%;
28	-webkit-font-smoothing: antialiased;
29}
30
31a
32{
33	color: __link__;
34	text-decoration: none;
35	cursor: pointer;
36}
37
38a:active,
39a:hover
40{
41	outline: 0
42}
43
44.dokuwiki a.wikilink2:link,
45.dokuwiki a.wikilink2:visited
46{
47    border-bottom: none !important;
48}
49
50h1, h2, h3, h4, h5, h6
51{
52    font-weight: 700;
53    font-family: "Roboto Slab","ff-tisa-web-pro","Georgia","Arial","sans-serif";
54	margin-bottom: 1.5em;
55	margin-top: calc(-1 * __height_header__);
56	padding-top: __height_header__;
57}
58
59h1
60{
61	font-size: 175%;
62}
63
64h2
65{
66	font-size: 150%;
67}
68
69h3
70{
71	font-size: 125%;
72}
73
74h4
75{
76	font-size: 115%;
77}
78
79h5
80{
81	font-size: 110%;
82}
83
84h6
85{
86	font-size: 100%
87}
88
89dl,
90ol,
91ul
92{
93	list-style: none;
94	list-style-image: none;
95	margin: 0;
96	padding: 0;
97}
98
99li
100{
101	list-style: none
102}
103
104pre
105{
106	background-color: __background_code__;
107	border: 1px solid __border_code__;
108	display: block;
109	font-family: SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;
110	font-size: 12px;
111	line-height: 1.4;
112    margin: 1px 0 24px;
113	overflow: auto;
114	padding: 12px;
115	white-space: pre;
116}
117
118code
119{
120	background-color: __background_monospace__;
121	border: 1px solid __border_monospace__;
122	color: __text_monospace__;
123	font-family: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, Courier, monospace;
124	font-size: 75%;
125	max-width: 100%;
126	padding: 2px 5px;
127	overflow-x: auto;
128	white-space: nowrap;
129}
130
131hr
132{
133    border: 0;
134    border-top: 1px solid #e1e4e5;
135    display: block;
136    height: 1px;
137    margin: 24px 0;
138    padding: 0;
139}
140
141input[type=text],
142input[type=password],
143input[type=email]
144{
145	border: 1px solid #ccc;
146	display: inline-block;
147	font-family: Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;
148	font-size: 80%;
149	padding: 6px;
150}
151
152input:focus,
153select:focus,
154textarea:focus,
155button:focus
156{
157    outline: none;
158}
159
160blockquote
161{
162    line-height: 24px;
163    margin-bottom: 24px;
164    margin-left: 24px;
165}
166
167button,
168.btn
169{
170	background-color: __background_button__;
171    border: 1px solid rgba(0,0,0,0.1);
172    border-radius: 2px;
173    box-shadow: 0px 1px 2px -1px rgb(255,255,255,.5) inset, 0px -2px 0px 0px rgb(0,0,0,.1) inset;
174    color: __text_button__;
175    cursor: pointer;
176    display: inline-block;
177    font-family: "Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;
178    font-size: 100%;
179    font-weight: normal;
180	height: 35px;
181    line-height: normal;
182    padding: 6px 12px 8px 12px;
183    text-decoration: none;
184    text-align: center;
185    user-select: none;
186    vertical-align: middle;
187    white-space: nowrap;
188    zoom: 1;
189    -webkit-user-drag: none;
190    -webkit-user-select: none;
191    -moz-user-select: none;
192    -ms-user-select: none;
193}
194
195button:hover,
196.btn:hover
197{
198    background-color: __background_button_hover__ !important;
199    color: __text_button_hover__;
200}
201
202main
203{
204	display: block;
205}
206
207.visible
208{
209	display: block !important;
210}
211
212.invisible
213{
214	display: none;
215}
216
217#dw__toc .btn-expand img {
218	display: none;
219}
220
221#btn-mobilemenu .icon-menu {
222	display: none;
223}
224