-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
101 lines (101 loc) · 2.06 KB
/
style.css
File metadata and controls
101 lines (101 loc) · 2.06 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
.root{
--speed:5
}
body{
background-image: url(download.jpg);
}
.heading{
display: inline-block;
width: 600px;
height: 55px;
background-color: blanchedalmond;
color: black;
font-size: 53px;
text-align: center;
margin-left: 29.5%;
box-shadow: 5px 10px;
margin-top: 20px;
}
.machine{
width: 800px;
height: 400px;
background-color: coral;
display: flex;
align-items: center;
margin-left: 24%;
margin-top: 35px;
border-bottom-left-radius: 65px;
border-top-left-radius: 65px;
border-bottom-right-radius:65px ;
border-top-right-radius: 65px;
}
.slot{
height: 225px;
width:190px ;
border: solid black 2px;
margin-top: 35px;
margin-left: 55px;
background-color: blanchedalmond;
text-align: center;
font-size: 75pt;
line-height: 250px;
overflow: hidden;
}
#btn{
width: 250px;
height: 40px;
display: inline-block;
background-color: orange;
color: white;
text-align: center;
text-decoration: none;
line-height: 35px;
margin-top: 30px;
margin-left: 30%;
border-top-left-radius: 40px;
border-bottom-right-radius: 40px;
}
#stop{
width: 250px;
height: 40px;
display: inline-block;
background-color: orange;
color: white;
text-align: center;
text-decoration: none;
line-height: 35px;
margin-top: 30px;
margin-left: 125px;
border-top-left-radius: 40px;
border-bottom-right-radius: 40px;
}
#rld{
display: block;
width: 250px;
height: 40px;
background-color: orange;
color: white;
text-align: center;
text-decoration: none;
line-height: 35px;
margin-top: 33px;
margin-left: 42%;
border-top-left-radius: 40px;
border-bottom-right-radius: 40px;
}
@keyframes slot{
0%{
transform:translateY(200px) ;
}
100%{
transform: translateY(-200px);
}
}
@keyframes spinslot{
0%{
transform:translateY(-200px) ;
}
100%{
transform: translateY(200px);
}
}