-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathraphael.css
More file actions
73 lines (71 loc) · 1.08 KB
/
raphael.css
File metadata and controls
73 lines (71 loc) · 1.08 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
/* Styles for the roulette application */
body, p {
background: #ffffff;
color: #000090;
font-family: "Helvetica Neue", Helvetica, "Arial Unicode MS", Arial, sans-serif;
font-size: 90%;
}
p {
margin: 0;
padding: 0;
}
#header {
border-bottom: 1px solid #ffffff;
}
#footer {
border-top: 1px solid #ffffff;
font-size: 80%;
text-align: center;
}
#body {
height: 300px;
margin: 10px;
text-align: center;
vertical-align: top;
}
#wheel {
border: 1px solid #e0e0e0;
float: left;
position: relative;
height: 300px;
left: 50%;
margin-left: -200px;
width: 300px;
}
#controls {
float: left;
position: relative;
height: 300px;
}
#controls ul {
border: 1px solid #000090;
color: #000090;
font-size: 90%;
list-style: none;
padding: 10px;
}
#controls ul li {
padding: 10px;
}
#notes {
float: right;
}
#notes ul {
background-color: #e0e0e0;
border: 1px solid #000090;
color: #000090;
font-size: 70%;
list-style: none;
padding: 10px;
}
#notes li {
text-align: left;
}
#notes li .date {
font-style: italic;
}
#notes li .description {
}
#notes:after {
clear: both;
}