-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
105 lines (92 loc) · 1.75 KB
/
style.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
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
html,
body {
margin: 0;
padding: 0;
font-family: 'Nunito', sans-serif;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
height: 100vh;
margin: auto 0;
/* background-image: linear-gradient(
95.2deg,
rgba(173, 252, 234, 1) 26.8%,
rgba(192, 229, 246, 1) 64%
); */
background: #001530;
position: relative;
}
h1 {
font-weight: 800;
color: white;
}
.container {
display: flex;
flex-direction: column;
justify-content: start;
align-items: center;
}
.correct {
background-image: url('nil');
background-color: #daaeae;
}
button {
width: 60%;
max-width: 120px;
background-color: #0a4aaa;
color: white;
padding: 12px 20px;
border-radius: 18px;
border: none;
cursor: pointer;
margin: 1rem;
font-weight: 500;
box-shadow: 0 0 1rem rgba(0, 0, 0, 0.118);
}
button:hover {
background-color: #416baa;
}
.boxes {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.box {
border-radius: 50%;
width: 115px;
height: 115px;
cursor: pointer;
transition: all ease-in-out 0.2s;
margin: 1.2rem;
box-shadow: 0 0 1rem rgba(0, 0, 0, 0.405);
}
/* .box:hover {
transform: scale(1.05);
border-color: rgb(0, 89, 255);
box-shadow: 0 0 1rem rgb(67, 119, 215);
} */
.highlighted {
transform: scale(1.2);
border-color: rgb(255, 0, 0);
box-shadow: 0 0 1rem rgb(255, 0, 0);
}
.clicked {
transform: scale(1.2);
border-color: rgb(0, 89, 255);
box-shadow: 0 0 1rem rgb(0, 89, 255);
}
.box img {
width: 115px;
height: 115px;
border-radius: 50%;
}
footer {
position: absolute;
bottom: 0;
color: white;
padding: 0 0 12px 0;
}