forked from mrdoob/three.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.css
70 lines (60 loc) · 858 Bytes
/
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
body {
margin: 20px;
color: #555;
font-family: Arial, sans-serif;
font-size: 15px;
overflow: auto;
}
a {
color: #2194CE;
}
h1 {
color: #444;
font-size: 25px;
margin-top: 10px;
}
h2 {
color: #8B2;
font-size: 18px;
margin-top: 40px;
}
h3 {
color: #000;
font-size: 16px;
margin-top: 30px;
font-weight: normal;
}
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;
background-color: #f9f9f9;
overflow: auto;
}
#button {
position: fixed;
top: 20px;
right: 20px;
padding: 8px;
color: #fff;
background-color: #555;
opacity: 0.5;
}
#button:hover {
cursor: pointer;
opacity: 1;
}