-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.css
More file actions
121 lines (109 loc) · 3.5 KB
/
script.css
File metadata and controls
121 lines (109 loc) · 3.5 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Paytone+One&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sixtyfour&family=Titan+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sixtyfour&family=Titan+One&display=swap');
.title{
font-family: 'Anton';
font-size: 50px;
font-weight: bolder;
text-align: center;
background: -webkit-linear-gradient(#8d1515, #ffffff);
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
-webkit-text-stroke: 2px black; /* Adjust the thickness and color as needed */
}
.lost{
font-family: 'Anton';
font-size: 50px;
font-weight: bolder;
text-align: center;
background: -webkit-linear-gradient(#ff0000, #000000);
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
-webkit-text-stroke: 2px black;
}
.won{
font-family: 'Anton';
font-size: 50px;
font-weight: bolder;
text-align: center;
background: -webkit-linear-gradient(#158d4b, #ffffff);
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
-webkit-text-stroke: 2px black;
}
.timer-circle {
border-radius: 50%;
width: 50px;
height: 50px;
margin: 20px auto;
display: flex;
align-items: center;
justify-content: center;
font-size: 25px;
font-weight: bold;
color: rgb(0, 0, 0);
border: 8px solid black;
background: -webkit-linear-gradient(#083047, #ffffff);
}
#game_text{
font-family: 'Paytone One';
font-size: 21px;
text-align: center;
-webkit-text-stroke: 1px black;
}
.game_buttons {
appearance: button;
background-color: darkgray;
background-image: linear-gradient(to bottom, darkgray, rgba(35, 33, 33, 0.523));
border: 2px solid black;
border-radius: 10px;
box-shadow: darkgray 4px 4px 0 0,darkgray 4px 4px 0 1px;
box-sizing: border-box;
color: black;
cursor: pointer;
display: inline-block;
font-family: 'Titan One';
font-size: 14px;
font-weight: 400;
line-height: 20px;
margin: 0 5px 10px 0;
overflow: visible;
padding: 12px 40px;
text-align: center;
text-transform: none;
touch-action: manipulation;
vertical-align: middle;
white-space: nowrap;
}
.game_buttons:hover {
scale: 1.05;
background-image: linear-gradient(to bottom, #083047, rgb(255, 255, 255));
}
.music_but {
appearance: button;
background-color: gray;
background-image: linear-gradient(to bottom, darkgray, rgba(35, 33, 33, 0.523));
border: 1px solid white;
border-radius: 10px;
box-shadow: gray 4px 4px 0 0, gray 4px 4px 0 1px;
box-sizing: border-box;
color: black;
cursor: pointer;
display: inline-block;
font-family: 'Titan One';
font-size: 14px;
font-weight: 400;
line-height: 20px;
margin: 0 5px 10px 0;
overflow: visible;
padding: 1px 10px;
text-align: center;
text-transform: none;
touch-action: manipulation;
vertical-align: middle;
white-space: nowrap;
}
.music_but:hover {
scale: 1.05;
background-image: linear-gradient(to bottom, rgb(8, 48, 71), rgb(255, 255, 255));
}