-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
59 lines (55 loc) · 1008 Bytes
/
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
/*
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 */
.the_wheel
{
background-image: url(./wheel_back.png);
background-position: center;
background-repeat: no-repeat;
padding: 100px 0;
}
.power_controls {
margin-top: 20px;
}
#prize {
color: white;
font-weight: bold;
font-size: 28px;
position: absolute;
text-align: center;
top: 290px;
width: 100%;
}
#product .prize {
margin: 50px 0;
}
#product ul {
list-style-type: none;
margin: 20px 0;
padding: 0;
}
#product ul li {
font-size: 15px;
font-weight: bold;
}
#product ul li:before {
content: "-";
margin-right: 10px;
}
#product img {
width: 100%;
}
#product button {
margin: 0 auto;
}