xref: /template/readthedokus/css/basic.css (revision 769de08fb53f39e9d6e214c03a094ea215e27ea2)
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]
141{
142	border: 1px solid #ccc;
143	box-shadow: inset 0 1px 3px #ddd;
144	display: inline-block;
145	font-family: Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;
146	font-size: 80%;
147	padding: 6px;
148}
149
150input:focus,
151select:focus,
152textarea:focus,
153button:focus
154{
155    outline: none;
156}
157
158blockquote
159{
160    line-height: 24px;
161    margin-bottom: 24px;
162    margin-left: 24px;
163}
164
165button,
166.btn
167{
168	background-color: #f3f6f6;
169    border: 1px solid rgba(0,0,0,0.1);
170    border-radius: 2px;
171    box-shadow: 0px 1px 2px -1px rgb(255,255,255,.5) inset, 0px -2px 0px 0px rgb(0,0,0,.1) inset;
172    color: #404040;
173    cursor: pointer;
174    display: inline-block;
175    font-family: "Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;
176    font-size: 100%;
177    font-weight: normal;
178	height: 35px;
179    line-height: normal;
180    padding: 6px 12px 8px 12px;
181    text-decoration: none;
182    text-align: center;
183    user-select: none;
184    vertical-align: middle;
185    white-space: nowrap;
186    zoom: 1;
187    -webkit-user-drag: none;
188    -webkit-user-select: none;
189    -moz-user-select: none;
190    -ms-user-select: none;
191}
192
193button:hover,
194.btn:hover
195{
196    background-color: #e5ebeb !important;
197    color: #404040;
198}
199
200.visible
201{
202	display: block !important;
203}
204
205.invisible
206{
207	display: none;
208}
209