-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
66 lines (58 loc) · 966 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
61
62
63
64
65
66
:root {
--logo-color: #3f5575;
}
html, body {
margin: 0;
font-family: Georgia, 'Times New Roman', Times, serif;
}
.header {
width: 100%;
padding: 16px;
background: #000;
}
.header > .logo {
width: 16%;
height: 16%;
}
.main {
margin: 8px;
}
.logo-shape-o {
position: relative;
width: 80px;
height: 100px;
background: var(--logo-color);
border-radius: 50%;
}
.logo-shape-o-white {
position: absolute;
left: 10px;
bottom: 10px;
width: 60px;
height: 84px;
background: #fff;
border-radius: 50%;
z-index: 1;
}
.logo-shape-o-adjustment1 {
position: absolute;
left: 4px;
top: 0;
width: 62px;
height: 48px;
background: var(--logo-color);
border-radius: 50% 50% 28px 4px;
z-index: 2;
transform: rotate(23deg);
}
.logo-shape-o-adjustment2 {
position: absolute;
left: 3px;
top: 49px;
width: 62px;
height: 12px;
background: #fff;
border-radius: 50%;
z-index: 3;
transform: rotate(14deg);
}