-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain-logo.css
55 lines (52 loc) · 1.03 KB
/
main-logo.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
html,
body {
height: 100%;
width: 100%;
overflow: hidden;
margin: 0; }
div.loader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #fff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
z-index: 100; }
div.loader p {
font-family: 'Helvetica', 'Arial', sans-serif;
margin: 1em 0 0 0;
font-size: 16px; }
div.logo {
width: 100px;
height: 100px;
border: 4px solid black;
box-sizing: border-box;
position: relative;
background-color: white; }
div.logo > div {
position: absolute; }
div.logo div.white {
border-left: 4px solid black;
top: 0;
bottom: 0;
right: 0;
width: 23%; }
div.logo div.orange {
border-top: 4px solid black;
left: 0;
bottom: 0;
right: 0;
height: 50%;
background-color: #F3B93F; }
div.logo div.red {
border-right: 4px solid black;
top: 0;
bottom: 0;
left: 0;
width: 27%;
background-color: #EA5664; }
/*# sourceMappingURL=main-logo.css.map */