forked from svaarala/duktape
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle-html.css
More file actions
75 lines (68 loc) · 1.34 KB
/
Copy pathstyle-html.css
File metadata and controls
75 lines (68 loc) · 1.34 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
/*
* HTML / body level CSS rules
*
* Includes font loading rules.
*/
.clear {
clear: both;
}
/* Used to allow browser search for e.g. ".duk_push_nan" in the index,
* but leave the dot hidden. Note that "display: none" or "visibility: hidden"
* don't work, as browsers (at least Chromium) won't then find the char
* in a search.
*/
.hidechar {
color: #ffffff;
font-size: 0pt;
}
/* Horizontal rules have been added for text browsers, never show them
* normally.
*/
hr {
display: none;
}
html {
background: #ffffff;
color: #000000;
width: 100%;
margin: 0;
padding: 0;
border: 0;
}
body {
background: #ffffff;
color: #000000;
width: 100%;
margin: 0;
padding: 0;
border: 0;
font-family: 'Open Sans', sans-serif;
/*font-family: 'Open Sans', fantasy;*/ /* useful for debugging font loading */
font-weight: 400;
font-size: 12pt;
}
@media print {
body {
font-family: serif;
font-weight: 400;
font-size: 10pt;
}
}
/* web font loading */
html {
visibility: hidden;
}
html.wf-active {
visibility: visible;
}
html.wf-inactive {
visibility: visible;
}
html.wf-fail {
/* custom rule, see: http://kevindew.me/post/47052453532/a-fallback-for-when-google-web-font-loader-fails */
visibility: visible;
}
html.wf-nojavascript {
/* custom rule, allows non-javascript browsers to render using fallback fonts */
visibility: visible;
}