-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (67 loc) · 1.75 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
*{
margin: 0%;
padding: 0%;
}
#game_pg{
background-image: url(bg.png);
background-repeat: no-repeat;
background-size: 100vw 100vh;
width: 100%;
height: 100vh;
}
.mode{
margin-top: 10%;
margin-bottom: 18px;
}
.login{
margin-top: 10%;
display: block;
background-color: floralwhite;
width: 325px;
height: fit-content;
margin-left: auto;
margin-right: auto;
border: cyan ridge 10px;
}
#name{
display: inline;
margin-left: 5%;
position: relative;
width: 50%;
height: 5%;
border: black ridge 5px ;
background-color: rgba(137, 43, 226, 0.096);
font-size: large;
color: rgb(32, 14, 32);
}
#subm{
display: block;
background-color: rgba(255, 217, 0, 0.705);
margin-right: auto;
margin-left: auto;
margin-top: 18px;
margin-bottom: 18px;
font-size: xx-large;
border: rgba(255, 217, 0, 0.397) 3px ridge;
border-radius: 10px;
cursor: pointer;
}
#titl{
font-size: 100px;
color: bisque;
text-align: center;
animation-name: glow;
animation-duration: 2s;
animation-iteration-count: infinite;
}
@keyframes glow {
0%{
text-shadow: 0 0 10px rgb(255, 0, 255), 0 0 20px rgb(255, 0, 255), 0 0 30px rgb(255, 0, 255), 0 0 40px rgb(255, 0, 255), 0 0 50px rgb(255, 0, 255), 0 0 80px rgb(255, 0, 255);
}
50%{
text-shadow: 0 0 10px rgba(0, 255, 0, 0.486), 0 0 20px rgba(0, 255, 0, 0.548), 0 0 30px rgba(0, 255, 0, 0.432), 0 0 40px rgba(0, 255, 0, 0.384), 0 0 50px rgba(0, 255, 0, 0.466), 0 0 80px rgb(0, 255, 0);
}
100%{
text-shadow: 0 0 10px rgba(0, 0, 255, 0.226), 0 0 20px rgba(0, 0, 255, 0.342), 0 0 30px rgba(0, 0, 255, 0.288), 0 0 40px rgba(0, 0, 255, 0.253), 0 0 50px rgb(0, 0, 255), 0 0 80px rgb(0, 0, 255);
}
}