xref: /template/readthedokus/css/basic.css (revision 74a41ade7fa08005930957c6c20220e019dcfb52)
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: #edf0f2;
23    color: #404040;
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: #2980B9;
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, legend
51{
52    margin-top: 0;
53	margin-bottom: 1.5em;
54    font-weight: 700;
55    font-family: "Roboto Slab","ff-tisa-web-pro","Georgia","Arial","sans-serif";
56}
57
58h1
59{
60	font-size: 175%;
61}
62
63h2
64{
65	font-size: 150%;
66}
67
68h3
69{
70	font-size: 125%;
71}
72
73h4
74{
75	font-size: 115%;
76}
77
78h5
79{
80	font-size: 110%;
81}
82
83h6
84{
85	font-size: 100%
86}
87
88dl,
89ol,
90ul
91{
92	list-style: none;
93	list-style-image: none;
94	margin: 0;
95	padding: 0;
96}
97
98li
99{
100	list-style: none
101}
102
103pre
104{
105	background-color: #f8f8f8;
106	border: 1px solid #e1e4e5;
107	display: block;
108	font-family: SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;
109	font-size: 12px;
110	line-height: 1.4;
111    margin: 1px 0 24px;
112	overflow: auto;
113	padding: 12px;
114	white-space: pre;
115}
116
117code
118{
119	background: #fff;
120	border: 1px solid #e1e4e5;
121	color: #e74c3c;
122	font-family: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, Courier, monospace;
123	font-size: 75%;
124	max-width: 100%;
125	padding: 2px 5px;
126	overflow-x: auto;
127	white-space: nowrap;
128}
129
130hr
131{
132    border: 0;
133    border-top: 1px solid #e1e4e5;
134    display: block;
135    height: 1px;
136    margin: 24px 0;
137    padding: 0;
138}
139
140input[type=text],
141input[type=password],
142input[type=email]
143{
144	border: 1px solid #ccc;
145	display: inline-block;
146	font-family: Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;
147	font-size: 80%;
148	padding: 6px;
149}
150
151input:focus,
152select:focus,
153textarea:focus,
154button:focus
155{
156    outline: none;
157}
158
159blockquote
160{
161    line-height: 24px;
162    margin-bottom: 24px;
163    margin-left: 24px;
164}
165
166button,
167.btn
168{
169	background-color: #f3f6f6;
170    border: 1px solid rgba(0,0,0,0.1);
171    border-radius: 2px;
172    box-shadow: 0px 1px 2px -1px rgb(255,255,255,.5) inset, 0px -2px 0px 0px rgb(0,0,0,.1) inset;
173    color: #404040;
174    cursor: pointer;
175    display: inline-block;
176    font-family: "Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;
177    font-size: 100%;
178    font-weight: normal;
179	height: 35px;
180    line-height: normal;
181    padding: 6px 12px 8px 12px;
182    text-decoration: none;
183    text-align: center;
184    user-select: none;
185    vertical-align: middle;
186    white-space: nowrap;
187    zoom: 1;
188    -webkit-user-drag: none;
189    -webkit-user-select: none;
190    -moz-user-select: none;
191    -ms-user-select: none;
192}
193
194button:hover,
195.btn:hover
196{
197    background-color: #e5ebeb !important;
198    color: #404040;
199}
200
201.visible
202{
203	display: block !important;
204}
205
206.invisible
207{
208	display: none;
209}
210
211#dw__toc .btn-expand img {
212	display: none;
213}
214
215#btn-mobilemenu .icon-menu {
216	display: none;
217}
218