-
Notifications
You must be signed in to change notification settings - Fork 17
/
index.scss
63 lines (46 loc) · 944 Bytes
/
index.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
.m-cookie-disclaimer {
@include text(t3);
display: block;
background-color: $color-medium-grey;
color: $color-prim-white;
opacity: 0.95;
padding-top: 20px;
padding-bottom: 20px;
&__container {
display: flex;
align-items: center;
flex-direction: column;
padding: 0 15px;
@media (min-width: $breakpoint-sm) {
justify-content: flex-end;
flex-direction: row;
}
}
&--fixed {
z-index: 2000;
position: fixed;
bottom: 0;
width: 100%;
}
&__title {
text-transform: uppercase;
@include text(t3);
margin-top: 0;
margin-bottom: 5px;
}
&__container--lx {
@media (min-width: $breakpoint-sm) {
width: 70%;
}
}
&__container--rx {
margin-top: 16px;
text-align: center;
@media (min-width: $breakpoint-sm) {
width: calc(30% - 30px);
margin-top: 0;
margin-left: 30px;
text-align: left;
}
}
}