-
Notifications
You must be signed in to change notification settings - Fork 0
/
_auk-brand.scss
65 lines (58 loc) · 1.18 KB
/
_auk-brand.scss
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
/* ==========================================================================
auk-brand
========================================================================== */
.auk-brand {
display: flex;
align-items: center;
text-decoration: none;
position: relative;
top: 0;
}
.auk-brand--link {
&:focus {
outline: none;
}
}
.auk-brand__logo {
position: relative;
width: 4.9rem;
height: 4.9rem;
padding-left: .75rem;
overflow: hidden;
background-color: $auk-brand;
svg {
height: 100%;
width: 56%;
}
&::before {
content: "";
display: block;
position: absolute;
right: -.1rem;
bottom: -.3rem;
border-top: 9rem solid #FFF;
border-left: 3.07818rem solid
transparent;
}
/* Gray border
&::after {
content: "";
top: -.2rem;
right: 17%;
transform: rotate(-19deg);
width: .1rem;
height: calc(100% + .4rem);
background-color: $auk-gray-300;
display: block;
position: absolute;
}*/
}
.auk-brand__logotype {
font-size: 2.1rem;
line-height: 1;
position: relative;
font-weight: 500;
color: $auk-gray-1000;
margin-left: .6rem;
transition: color 125ms cubic-bezier(.19,1,.22,1);
}