-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
117 lines (93 loc) · 1.79 KB
/
Copy pathstyle.css
File metadata and controls
117 lines (93 loc) · 1.79 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
html {
width: 100vw;
height: 100vh;
overflow: hidden;
}
body {
height: 100%;
margin: 0;
padding: 0;
background: linear-gradient(
rgba(65, 255, 65, 0.75),
rgba(0, 165, 14, 0.75)
);
}
.container {
width: 100%;
height: 100%;
display: flex;
justify-content: flex-start;
align-items: center;
flex-direction: column;
}
.score-container {
height: 20%;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 0;
padding: 0;
}
.score-container p {
margin: 0px;
}
#score {
font-size: 60px;
font-family: "Poppins", sans-serif;
font-weight: 600;
color: white;
text-shadow: 0 0 30px rgb(129, 129, 129);
}
.score-container #reset {
display: none;
}
.frog-container {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
#frog {
cursor: pointer;
user-select: none;
font-size: 300px;
padding: 0;
margin-top: 0;
margin-bottom: -10px;
transition: 10ms ease-out;
}
#frog-quotes {
font-family: "Poppins", sans-serif;
font-size: 24px;
color: #ffffff;
text-align: center;
background: rgba(0, 0, 0, 0.1);
backdrop-filter: blur(6px);
border: 1px solid rgba(0, 0, 0, 0.08);
border-radius: 12px;
padding: 12px 20px;
margin: 20px;
max-width: 80%;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
transition: opacity 0.2s ease-in-out;
}
#frog:hover {
scale: 1.1;
}
#frog:active {
scale: 1;
}
.footer {
margin-top: auto;
margin-bottom: 50px;
display: flex;
justify-content: center;
padding: 10px;
}
.footer p {
font-family: "Poppins", sans-serif;
color: rgba(0, 0, 0, 0.616);
margin: 0;
}