-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
79 lines (73 loc) · 1.49 KB
/
main.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
#title {
color: rgb(0, 0, 0);
font-family: 'JAGUAR', Arial, sans-serif;
src: url('JAGUAR.ttf');
font-weight: 100;
font-size: 4vw;
}
body {
width: 100wh;
height: 90vh;
color: #fff;
background: linear-gradient(45deg, #f79d00, #64f38c);
background-size: 400% 400%;
-webkit-animation: Gradient 15s ease infinite;
-moz-animation: Gradient 15s ease infinite;
animation: Gradient 15s ease infinite;
text-align: center;
margin: 0;
font-weight: 100;
-webkit-font-smoothing: antialiased;
font-display: swap;
}
@-webkit-keyframes Gradient {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
@-moz-keyframes Gradient {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
@keyframes Gradient {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
#Score {
color: rgb(0, 0, 0);
font-family: 'JAGUAR', Arial, sans-serif;
src: url('JAGUAR.ttf');
font-weight: 100;
font-size: 4vw;
float: left;
padding-left: 10px;
}
#HighScore {
color: rgb(0, 0, 0);
font-family: 'JAGUAR', Arial, sans-serif;
src: url('JAGUAR.ttf');
font-weight: 100;
font-size: 4vw;
float: right;
padding-right: 10px;
}