-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
112 lines (98 loc) · 1.97 KB
/
style.css
File metadata and controls
112 lines (98 loc) · 1.97 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
@font-face {
font-family: "Edu";
src: url(./Fonts/EduQLDBeginner-Regular.ttf);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Edu";
}
body {
background-color: #fa8072a1 !important;
}
.mainContainer {
margin-bottom: 20px;
background-color: #7848a4ca;
color: white;
border-radius: 30px;
filter: drop-shadow(5px 5px 10px #000000);
}
button {
width: 140px !important;
outline: none;
border: none;
padding: 8px;
border: 2px solid #fa8072;
background-color: #32045c;
color: white;
filter: drop-shadow(5px 3px 4px #fa8072);
}
button:hover {
background-color: white;
color: #32045c;
position: relative;
transition: 0.4s all linear;
}
.disappear {
display: none;
}
h1 {
font-weight: 900 !important;
}
label {
padding: 8px;
margin: 5px;
border: 2px solid #570357;
border-radius: 20px;
background-color: #fa8072;
color: black;
width: 600px;
height: 50px;
font-size: 20px;
}
label:hover {
background-color: white;
color: #32045c;
position: relative;
transition: 0.4s all linear;
cursor: pointer;
}
.score {
height: 180px;
width: 180px;
text-align: center;
background-color: #400e6eca;
color: white;
border-radius: 80%;
filter: drop-shadow(5px 5px 10px #000000);
}
.score h2 {
margin-top: 60px;
font-weight: 800 !important;
}
#placeholder-Timer{
text-align: center;
font-size: 32px;
font-weight: bold;
}
@media screen and (min-width: 0px) and (max-width: 480px) {
label {
padding: 8px;
margin: 5px;
border: 3px solid #570357;
border-radius: 20px;
background-color: #fa8072;
color: black;
width: 250px;
height: 60px;
font-size: 15px;
}
label:hover {
background-color: white;
color: #32045c;
position: relative;
transition: 0.4s all linear;
cursor: pointer;
}
}