-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (44 loc) · 912 Bytes
/
Copy pathstyle.css
File metadata and controls
53 lines (44 loc) · 912 Bytes
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
main {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
@media (max-width: 768px) {
main {
grid-template-columns: repeat(1, 1fr);
}
}
.circle {
width: 200px;
height: 200px;
border: 5px solid #FF4838;
border-radius: 50%;
margin: 20px;
display: grid;
place-items: center;
font-size: 24px;
font-weight: bold;
font-family: poppins, sans-serif;
transition: background-color 0.2s ease-in-out;
}
.circle:hover {
background-color: #FF4838;
color: #fff;
}
.circle2 {
width: 200px;
height: 200px;
border: 5px solid #395e66;
border-radius: 50%;
margin: 20px;
display: grid;
place-items: center;
font-size: 24px;
font-weight: bold;
font-family: poppins, sans-serif;
transition: background-color 0.2s ease-in-out;
}
.circle2:hover {
background-color: #395e66;
color: #fff;
}