-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
47 lines (44 loc) · 817 Bytes
/
styles.css
File metadata and controls
47 lines (44 loc) · 817 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
div {
height: 20rem;
width: 20rem;
background: radial-gradient( circle at 33% 100%, #fed373 4%, #f15245 30%, #d92e7f 62%, #515ecf);
border-radius: 30%;
position: relative;
}
div:before {
content: '';
border: 1rem solid #fff;
border-radius: 30%;
width: 12.5rem;
height: 12.5rem;
left: 0;
right: 0;
position: absolute;
margin: auto;
top: 0;
bottom: 0;
}
div:after {
content: '';
border: 1rem solid #fff;
border-radius: 100%;
width: 5rem;
height: 5rem;
left: 0;
right: 0;
position: absolute;
margin: auto;
top: 0;
bottom: 0;
}
span {
content: '';
border: 1rem solid #fff;
border-radius: 100%;
width: 0;
height: 0;
right: 5rem;
position: absolute;
margin: auto;
top: 5rem;
}