-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
39 lines (35 loc) · 783 Bytes
/
Copy pathstyle.css
File metadata and controls
39 lines (35 loc) · 783 Bytes
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
#logo {
position: relative;
border-top: 50px solid #ea4335;
border-right: 50px solid #4285f4;
border-bottom: 50px solid #34A853;
border-left: 50px solid #fbbc05;
border-radius: 50%;
background-color: #FFFFFF;
width: 150px;
height: 150px;
padding: 0;
margin: 10vh auto 0;
}
#logo::before {
content: "";
z-index: 100;
position:absolute;
top: 50%;
right: -42.5px;
transform: translateY(-50%);
width: 122.5px;
height: 50px;
background: #4285f4;
}
#logo::after {
content: "";
z-index: 105;
position: absolute;
border-top: 46px solid transparent;
border-right: 105px solid #FFF;
top: -27px;
right: -47px;
width: 90px;
height: 31px;
}