-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmartrockets.css
More file actions
87 lines (80 loc) · 1.31 KB
/
smartrockets.css
File metadata and controls
87 lines (80 loc) · 1.31 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
#defaultCanvas0 {
margin-left: 2%;
border: 1px solid blue;
}
body {
/*background: url(https://www.jing.fm/clipimg/full/234-2348690_tumblr-aesthetic-quote-quotes-stars-star-space-circle.png);*/
background-color: black;
}
h1,
h4 {
font-family: "Press Start 2P", cursive;
text-align: center;
color: yellow;
animation: blinkingText 5s infinite;
}
.btn-group {
border: 0px solid green;
margin-left: 43%;
color: white;
width: 100%;
padding: 10px 10px;
cursor: pointer;
float: left;
padding-bottom: 30px;
}
#restartButton {
font-family: "Press Start 2P", cursive;
background-color: #000000;
border: none;
color: red;
padding: 15px 15px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-radius: 10px;
margin-right: 50px;
animation: blinkingText 5s infinite;
}
button:focus {
outline: none;
}
#restartButton:hover {
/*background-color: white;*/
opacity: 1;
color: red;
animation: none;
}
@keyframes blinkingText {
0% {
color: #10c018;
}
10% {
color: #1056c0;
}
20% {
color: #11fa1a;
}
30% {
color: #00ffff;
}
40% {
color: #04a1d5;
}
50% {
color: #00ffff;
}
60% {
color: #00ff00;
}
70% {
color: magenta;
}
80% {
color: purple;
}
90% {
color: white;
}
}