forked from mrdoob/three.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.css
113 lines (95 loc) · 1.35 KB
/
page.css
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
@font-face {
font-family: 'inconsolata';
src: url('files/inconsolata.woff') format('woff');
font-weight: normal;
font-style: normal;
}
body {
margin: 30px 20px;
color: #555;
font-family: 'inconsolata';
font-size: 15px;
line-height: 18px;
tab-size: 4;
overflow: auto;
}
a {
color: #1184CE;
}
h1 {
color: #333;
font-size: 25px;
font-weight: normal;
margin-top: 10px;
}
h2 {
color: #4B0;
font-size: 18px;
font-weight: normal;
margin-top: 40px;
}
h3 {
color: #000;
font-size: 16px;
font-weight: normal;
margin-top: 30px;
}
div {
/* padding-left: 30px; */
margin-bottom: 20px;
}
div.desc {
padding-left: 0px;
}
pre, code {
margin-top: 20px;
margin-bottom: 20px;
}
code {
display: block;
width: -webkit-calc( 100% - 40px );
width: -moz-calc( 100% - 40px );
width: calc( 100% - 40px );
padding: 20px;
white-space: pre-wrap;
background-color: #f9f9f9;
overflow: auto;
}
iframe {
width: 100%;
height: 420px;
border:0;
}
th {
padding: 10px;
text-decoration: underline;
}
td {
text-align: center;
}
table code {
padding: 2px;
margin: 0px;
width: auto;
}
strong {
color: #000;
font-weight: normal;
}
#button {
position: fixed;
top: 20px;
right: 20px;
padding: 8px;
color: #fff;
background-color: #555;
opacity: 0.5;
}
#button:hover {
cursor: pointer;
opacity: 1;
}
a.permalink {
float: right;
margin-left: 5px;
}