-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (74 loc) · 1.23 KB
/
Copy pathstyle.css
File metadata and controls
82 lines (74 loc) · 1.23 KB
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
body {
background: #ffffff;
display: flex;
align-items: center;
flex-direction: column;
overflow: hidden;
}
.container {
width: auto;
height: auto;
margin-top: 100px;
overflow: hidden;
}
.x-box {
margin-top: 0px;
width: 300px;
height: 290px;
border-radius: 50%;
background: #3a3a3a;
position: relative;
}
.x-box:after {
content: '';
position: absolute;
width: 400px;
height: 205px;
border-radius: 50%;
top: 34px;
left: 15px;
border-top: 55px solid #ffffff;
transform: rotate(-38deg);
}
.x-box:before {
content: '';
position: absolute;
width: 367px;
height: 200px;
border-radius: 50%;
top: 44px;
left: -82px;
border-top: 55px solid #ffffff;
transform: rotate(38deg);
}
.text-logo {
color: #3a3a3a;
font-weight: lighter;
font-size: 5em;
font-family: sans-serif;
position: relative;
text-align: center;
letter-spacing: -5px;
}
.text-logo:before {
content: '';
width: 20px;
height: 7px;
background: #3a3a3a;
top: 39px;
left: 95px;
position: absolute;
}
.text-logo:after {
content: '';
width: 5px;
height: 15px;
background: #ffffff;
top: 34px;
left: 94px;
position: absolute;
transform: rotate(31deg);
}
.text-logo span {
margin-left: 10px;
}