forked from HuXn-WebDev/Advance-CSS-40-Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (43 loc) 路 824 Bytes
/
Copy pathstyle.css
File metadata and controls
47 lines (43 loc) 路 824 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: #1d1e22;
}
.circle {
display: grid;
place-items: center;
margin: 0 20px;
width: 200px;
height: 200px;
background: #fff;
border-radius: 50%;
}
.circle .circle_inner {
display: grid;
place-items: center;
width: 170px;
height: 170px;
background: #1d1e22;
border-radius: 50%;
font-size: 30px;
}
.circle.crimson {
color: crimson;
background: conic-gradient(crimson 0 95%, #303238 95% 100%);
}
.circle.blueviolet {
color: crimson;
background: conic-gradient(blueviolet 0 64%, #303238 64% 100%);
}
.circle.yellow {
color: yellow;
background: conic-gradient(yellow 0 50%, #303238 50% 100%);
}