-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtic.css
More file actions
80 lines (67 loc) · 1.69 KB
/
tic.css
File metadata and controls
80 lines (67 loc) · 1.69 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
*{
margin: 0%;
padding: 0%;
}
#game_pg{
background-image: url(bg.png);
background-repeat: no-repeat;
background-size: 100vw 100vh;
width: 100%;
height: 100vh;
}
#game{
margin-top: 2%;
display: block;
width: 300px;
height: 300px;
margin-left: auto;
margin-right: auto;
}
.btn{
width: 100px;
height: 100px;
background-color: rgba(229, 255, 0, 0.322);
border: brown solid 1px;
font-size: 80px;
float: left;
}
.tag{
font-size: xx-large;
text-align: center;
margin-top: 1%;
}
#titl{
font-size: 400%;
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);
}
}
.buts{
display: block;
background-color: rosybrown;
text-align: center;
color: rgb(13, 34, 95);
font-size: xx-large;
width: 200px;
height: 100px;
font-style: italic;
border: 4px rgb(13, 34, 95) groove;
margin-left: auto;
margin-right: auto;
cursor: pointer;
border-radius: 20%;
margin-top: 2%;
}