-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
107 lines (92 loc) · 2.3 KB
/
styles.css
File metadata and controls
107 lines (92 loc) · 2.3 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
102
103
104
105
106
107
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: black;
background-image: url("./images/gbg.png");
}
.slot-machine {
display: flex;
align-items: center;
}
.lines {
position: absolute;
display: flex;
align-items: center;
z-index: 1;
animation: fadeIn 1.5s;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.hidden {
display: none;
}
.reel {
width: 200px;
display: flex;
flex-direction: column-reverse;
align-items: center;
overflow: hidden;
height: 600px;
}
.symbol {
width: 200px;
height: 200px;
}
.controls {
display: flex;
justify-content: space-between;
}
.balancediv,.betdiv {
display: flex;
font-size: 24px;
margin-right: 20px;
}
.balance,.bet {
margin-right: 10px;
display: flex;
align-items: center;
color: gold;
text-shadow: #FF2D95 0px 0px 20px, #FF2D95 0px 0px 30px, #FF2D95 0px 0px 40px, #FF2D95 0px 0px 50px, #FF2D95 0px 0px 75px;
}
.winammount {
position: absolute;
display: flex;
align-items: center;
justify-content: center;
z-index: 2;
opacity: 1;
top: 50%;
left: 50%;
transform: translate(-50%, -150%);
font-size: 150px;
color: rgb(247, 148, 130);
text-shadow: 0 3px 20px red, 0 0 20px red, 0 0 10px orange, 0 0 0 yellow, 0 0 5px yellow, -2px -5px 5px yellow, 4px -10px 10px yellow;
animation: 2s Blazing infinite alternate linear;
}
@keyframes Blazing {
0% {
text-shadow: 0 3px 20px red, 0 0 20px red, 0 0 10px orange, 0 0 0 yellow, 0 0 5px yellow, -2px -5px 5px yellow, 4px -10px 10px yellow;
}
25% {
text-shadow: 0 3px 20px red, 0 0 30px red, 0 0 20px orange, 0 0 5px yellow, -2px -5px 5px yellow, 3px -10px 10px yellow, -4px -15px 20px yellow;
}
50% {
text-shadow: 0 3px 20px red, 0 0 20px red, 0 -5px 10px orange, -2px -5px 5px yellow, 3px -10px 10px yellow, -4px -15px 20px yellow, 2px -20px 30px rgba(255, 255, 0, 0.5);
}
75% {
text-shadow: 0 3px 20px red, 0 0 20px red, 0 -5px 10px orange, 3px -5px 5px yellow, -4px -10px 10px yellow, 2px -20px 30px rgba(255, 255, 0, 0.5), 0px -25px 40px rgba(255, 255, 0, 0);
}
100% {
text-shadow: 0 3px 20px red, 0 0 20px red, 0 0 10px orange, 0 0 0 yellow, 0 0 5px yellow, -2px -5px 5px yellow, 4px -10px 10px yellow;
}
}