-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
121 lines (103 loc) · 1.86 KB
/
Copy pathstyle.css
File metadata and controls
121 lines (103 loc) · 1.86 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
body {
text-align: center;
background: linear-gradient(135deg, #1e3c72, #2a5298);
color: white;
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 20px;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
}
h1 {
font-size: 3rem;
margin: 20px 0;
text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}
h2 {
font-size: 1.3rem;
margin-bottom: 20px;
}
#score {
font-size: 1.5rem;
margin-top: 15px;
background: rgba(255, 255, 255, 0.15);
padding: 10px 25px;
border-radius: 12px;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
.btn-container {
display: flex;
flex-direction: column;
gap: 20px;
}
.line-one,
.line-two {
display: flex;
justify-content: center;
gap: 20px;
}
.btn {
height: 150px;
width: 150px;
border-radius: 20px;
border: 5px solid white;
cursor: pointer;
font-size: 1.2rem;
display: flex;
justify-content: center;
align-items: center;
color: rgba(255, 255, 255, 0.7);
transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover {
transform: scale(1.1);
box-shadow: 0px 0px 25px rgba(255, 255, 255, 0.8);
}
.red {
background-color: #d95980;
}
.green {
background-color: #63aac0;
}
.yellow {
background-color: #f99b45;
}
.purple {
background-color: #819ff9;
}
.flash {
background-color: white !important;
}
.userflash {
background-color: green !important;
}
.magic-dot {
position: fixed;
width: 8px;
height: 8px;
border-radius: 50%;
pointer-events: none;
background: radial-gradient(circle, #fff, #00f, transparent);
opacity: 0.8;
transform: translate(-50%, -50%);
animation: fadeOut 0.7s forwards;
}
@keyframes fadeOut {
to {
transform: scale(0);
opacity: 0;
}
}
@media (max-width: 600px) {
.btn {
width: 100px;
height: 100px;
font-size: 1rem;
}
h1 {
font-size: 2rem;
}
}