Newer
Older
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
:host {
display: block;
}
.hy-shortcuts {
overflow: hidden;
.shortcut-link-container {
display: flex;
flex-wrap: wrap;
margin: 0 calc(#{var(--gutter-mobile)}* -1);
@include breakpoint($medium) {
margin: 0 calc(#{var(--gutter-medium)}* -1);
}
@include breakpoint($wide) {
margin: 0 calc(#{var(--gutter-wide)}* -1);
}
.shortcut-link-wrapper {
min-height: 62px;
padding: 0 var(--gutter-mobile);
@include breakpoint($medium) {
min-height: 70px;
padding: 0 var(--gutter-medium);
}
@include breakpoint($wide) {
min-height: 82px;
padding: 0 var(--gutter-wide);
}
}
.shortcut-link-wrapper.box-3 {
width: 100%;
@include breakpoint($medium) {
width: 33.33%;
}
}
.shortcut-link-wrapper.box-4 {
width: 50%;
@include breakpoint($medium) {
width: 25%;
}
}
.shortcut-link-wrapper.box-3.first a.shortcut-link,
.shortcut-link-wrapper.box-4.first a.shortcut-link {
border-top: 2.5px solid var(--brand-main-nearly-black);
@include breakpoint($medium) {
// tablet
border-top: 3px solid var(--brand-main-nearly-black);
}
}
a.shortcut-link {
align-items: center;
background-color: transparent;
border-bottom: 2.5px solid var(--brand-main-nearly-black);
color: var(--brand-main-nearly-black);
cursor: pointer;
display: flex;
font-family: var(--main-font-family);
font-size: 14px;
font-weight: 600;
justify-content: space-between;
height: 100%;
letter-spacing: -0.44px;
line-height: 18px;
min-height: 70px;
position: relative;
text-decoration: none;
@include breakpoint($medium) {
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
border-bottom: 3px solid var(--brand-main-nearly-black);
border-top: 3px solid var(--brand-main-nearly-black);
font-size: 16px;
letter-spacing: -0.5px;
line-height: 18px;
min-height: 70px;
}
@include breakpoint($wide) {
font-size: 16px;
letter-spacing: -0.5px;
line-height: 22px;
min-height: 82px;
}
.link-icon {
padding: 0 0 0 8px;
@include breakpoint($medium) {
padding: 0 0 0 12px;
}
@include breakpoint($wide) {
padding: 0 4px 0 22px;
}
svg {
height: 20px;
fill: var(--brand-main-light);
width: 20px;
@include breakpoint($medium) {
height: 24px;
width: 24px;
}
@include breakpoint($wide) {
height: 28px;
width: 28px;
}
}
}
}
}
}