forked from ChromeGaming/Spaceship-escort
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
111 lines (101 loc) · 1.98 KB
/
style.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
@charset "UTF-8";
html,
body {
user-select: none;
-webkit-print-color-adjust: exact;
height: 100%;
margin: 0;
}
.menuDivs {
position: relative;
line-height: 8px;
display: inline-block;
text-align: center;
margin: 1%;
width: 10vw;
height: 10vw;
max-width: 40px;
max-height: 40px;
}
.nam {
position: absolute;
top: 65px;
text-align: center;
line-height: 12px;
width: 1px;
width: 10vw;
max-width: 40px;
font-size: min(3.5vw, 11px);
}
.menuShips {
border: 2px solid #445915;
border-radius: 8px;
text-align: center;
color: gray;
width: 100%;
height: 100%;
background-image: url("https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/0de2ae58-78fd-4b15-9ed6-d39a0ea17bbd");
background-size: 800% 200%;
background-repeat: no-repeat;
background-color: black;
image-rendering: crisp-edges;
}
.a1 {
position: absolute;
height: 80px;
padding: 3%;
width: 25%;
text-align: center;
border-radius: 10px;
background-color: rgba(44, 44, 44, 0.8);
}
.a2 {
position: absolute;
color: yellow;
font-weight: 100;
opacity: 0.8;
}
.blink_me {
animation: blinker 2s ease-in infinite;
}
@keyframes blinker {
50% {
opacity: 0.5;
}
}
.blink_me2 {
animation: blinker2 1.25s ease-in infinite;
}
@keyframes blinker2 {
50% {
opacity: 0.1;
}
}
.knockout {
margin-top: 20px;
text-align: center;
font-family: arial;
font-size: min(10vw, 45px);
text-shadow: 0 0 20px white;
background: linear-gradient(140deg, #27cfcc 33.5%, rgba(0, 0, 0, 0) 33%),
linear-gradient(140deg, yellow 34%, #ff5454 34%);
background-size: 500%;
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
}
.knockout {
animation: Gradient 5s ease infinite;
-webkit-animation: Gradient 5s ease infinite;
-moz-animation: Gradient 5s ease infinite;
}
@-webkit-keyframes Gradient {
0% {
background-position: 30% 50%;
}
50% {
background-position: 25% 50%;
}
100% {
background-position: 30% 50%;
}
}