blob: a1631358dc5ece204ba75796e9c71b90aade83c1 (
plain) (
blame)
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
|
body {
max-width: 900px;
padding: 30px;
margin: 0 auto;
font: 14px/19px 'Lucida Grande', sans-serif;
}
#main {
margin: 80px 0;
padding-left: 542px;
height: 512px;
position: relative;
}
#error {
position: absolute;
left: 0;
top: 0;
width: 412px;
height: 412px;
padding: 50px;
text-align: center;
background: #DFDFDF;
}
canvas {
position: absolute;
left: 0;
top: 0;
}
p,
ul {
margin: 0 0 30px 0;
}
h1 {
font: bold italic 50px Georgia;
margin: 0 0 60px 0;
text-align: center;
}
a {
color: inherit;
}
#footer {
text-align: center;
margin: 100px 0 0 0;
}
#glossiness-factor {
display: none;
font-size: 12px;
}
#glossiness-factor input {
width: 40px;
text-align: center;
}
|