-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
81 lines (67 loc) · 1.12 KB
/
main.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
/*
Description:
Contains all the styles for the winning wheel page.
Verison History:
2012-01-28, Douglas McKechie
- Created based off earlier version.
2015-09-26, Douglas McKechie
- Minor updates for the 2.0 winwheel example.
*/
body
{
font-family: arial;
}
/* Sets the background image for the wheel */
td.the_wheel
{
background-image: url(./wheel_back.png);
background-position: center;
background-repeat: none;
}
/* Do some css reset on selected elements */
h1, p
{
margin: 0;
}
div.power_controls
{
margin-right:70px;
}
div.html5_logo
{
margin-left:70px;
}
/* Styles for the power selection controls */
table.power
{
background-color: #cccccc;
cursor: pointer;
border:1px solid #333333;
}
table.power th
{
background-color: white;
cursor: default;
}
td.pw1
{
background-color: #6fe8f0;
}
td.pw2
{
background-color: #86ef6f;
}
td.pw3
{
background-color: #ef6f6f;
}
/* Style applied to the spin button once a power has been selected */
.clickable
{
cursor: pointer;
}
/* Other misc styles */
.margin_bottom
{
margin-bottom: 5px;
}