forked from pytorch/pytorch.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookie-banner.scss
53 lines (48 loc) · 899 Bytes
/
cookie-banner.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
.cookie-banner-wrapper {
display: none;
&.is-visible {
display: block;
position: fixed;
bottom: 0;
background-color: $light_grey;
min-height: 100px;
width: 100%;
z-index: 401;
border-top: 3px solid #ededee;
}
.gdpr-notice {
color: $dark_grey;
margin-top: rem(25px);
text-align: left;
max-width: 1440px;
@include desktop {
width: 77%;
}
@include small-desktop {
width: inherit;
}
.cookie-policy-link {
color: #343434;
}
}
.close-button {
appearance: none;
background: transparent;
border: 1px solid $light_grey;
height: rem(21px);
position: absolute;
bottom: 42px;
right: 0;
top: 0;
cursor: pointer;
outline: none;
@include desktop {
right: 20%;
top: inherit;
}
@include small-desktop {
right: 0;
top: 0;
}
}
}