-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (55 loc) · 1010 Bytes
/
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.logo .bg {
position: relative;
width: 275px;
height: 275px;
border-radius: 65px;
background: linear-gradient(45deg,
#ffcc00 0%,
#fe6104 32%,
#ff0c5a 50%,
#fc03bb 62%,
#7d0cfd 100%);
}
.logo .icon {
content: '';
height: 100px;
width: 100px;
border-radius: 50%;
border: 18px solid #fff;
top: 50%;
position: absolute;
left: 50%;
transform: translate(-50%,-50%);
}
.logo .icon::before {
content: '';
position: absolute;
height: 170px;
width: 170px;
border: 18px solid #fff;
border-radius: 30%;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
.logo .icon:after {
content:'';
position: absolute;
height: 24px;
width: 24px;
border-radius: 50%;
background: #fff;
top: -35px;
right: -35px;
}