-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
executable file
·83 lines (78 loc) · 1.67 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
#splash{
width: 50%;
height: 350px;
text-align: center;
margin-left: auto;
margin-right: auto;
color: white;
}
#img{
width: 150px;
height:210px;
margin-left: auto;
margin-right: auto;
}
#img img{
width:100%;
height: auto;
}
#wheel{
width: 150px;
height: 150px;
margin-left: auto;
margin-right: auto;
}
#wheel img{
width: 100%;
height: auto;
}
#navbar nav.navbar.navbar-default{
height:50px;
}
#navbarCollapse {
height: auto;
}
ul.nav:nth-child(2) > li:nth-child(1){
height: auto;
}
body {
background-image: url('background.jpg');
}
@-webkit-keyframes spin {
from { -webkit-transform: rotate(0deg); }
to { -webkit-transform: rotate(360deg); }
}
@-moz-keyframes spin {
from { -moz-transform: rotate(0deg); }
to { -moz-transform: rotate(360deg); }
}
@-ms-keyframes spin {
from { -ms-transform: rotate(0deg); }
to { -ms-transform: rotate(360deg); }
}
#starholder {
position: relative;
left: 200px;
width: 500px;
height: 400px;
}
#star {
background: url(wheel.png) 0 0 no-repeat;
position: absolute;
top: -0px;
left: -0px;
width: 400px;
height: 400px;
-webkit-animation-name: spin;
-webkit-animation-duration: 12000ms;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-name: spin;
-moz-animation-duration: 12000ms;
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-ms-animation-name: spin;
-ms-animation-duration: 12000ms;
-ms-animation-iteration-count: infinite;
-ms-animation-timing-function: linear;
}