-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
65 lines (59 loc) · 1.01 KB
/
main.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
body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
font: 1em sans-serif;
height: 100vh;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
section.main {
text-align: center;
}
.logo-wrapper {
margin: 20px auto;
display: inline-block;
position: relative;
left: 20px;
}
.rect {
width: 20px;
background: red;
height: 60px;
float: left;
position: relative;
margin-right: 30px;
margin-left: -10px;
}
.rect:last-child:before,
.rect:last-child:after {
display: none;
}
.rect:after {
width: 20px;
background: white;
height: 60px;
position: absolute;
display: block;
top: 0;
left: 20px;
content: "";
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.rect:before {
width: 20px;
background: white;
height: 20px;
border: red solid 20px;
position: absolute;
display: block;
top: -30px;
left: 0;
content: "";
border-radius: 100%;
}