-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathindex.css
94 lines (78 loc) · 1.43 KB
/
index.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
body {
background: #fff;
color: #000;
font-size: 18px;
line-height: 24px;
font-family: "ff-basic-gothic-web-pro", Verdana,Arial,Sans-serif;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a.sourceLink {
position: relative;
top: -24px;
left: 30px;
font-size: 12px;
}
h2 {
text-align: center;
}
.canvas {
border-radius: 12px;
border: thin solid lightgray;
width: 200px;
height: 200px;
margin: 0 auto;
display: block;
margin-top: 18px;
}
#main {
position: relative;
width: 960px;
margin: 0 auto;
height: 1200px;
}
#main > div {
padding: 10px;
overflow: hidden;
}
#headers {
position: absolute;
left: 0px;
width: 220px;
top: 28px;
}
#paper {
position: absolute;
left: 240px;
width: 240px;
top: 28px;
}
#processing {
position: absolute;
left: 480px;
width: 240px;
top: 28px;
}
#raphael {
position: absolute;
left: 720px;
width: 240px;
top: 28px;
}
pre {
font-size: 12px;
line-height: 14px;
}
#paperGears {
background: transparent url('gears.png') no-repeat scroll 0 0;
}
#processingGears {
background: transparent url('gears.png') no-repeat scroll -250px 0;
}
#raphaelGears {
background: transparent url('gears.png') no-repeat scroll -500px 0;
}