-
Notifications
You must be signed in to change notification settings - Fork 0
/
accept.css
107 lines (107 loc) · 2.88 KB
/
accept.css
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
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
.cookie-info{
width: 100%;
height: auto;
background-color: green;
color: #ffffff;
position: fixed;
bottom: 0;
left: 0;
font-family: 'Roboto Regular', Arial, Tahoma, sans-serif;
opacity: 0.95;
}
.cookie-info > img{
float: left;
display: inline-block;
margin-top: 20px;
}
.cookie-info > .info{
display: inline-block;
width: 96%;
font-size: 70%;
margin-left: 2%;
}
.cookie-info > .info a{
color:#ffffff;
}
.cookie-info > div.accept{
display: inline-block;
float: right;
margin-right: 5%;
}
.cookie-info > div.accept a{
display:inline-table;
color:white;
color:#ffffff;
width:30%;
font-size:90%;
font-weight:bold;
text-transform:uppercase;
text-decoration:none;
margin-right:6%;
}
.cookie-info > .close img{
display:inline-block;
width:30px;
position:absolute;
right:1%;
}
.cookie-info > .close img:hover{
cursor:pointer;
}
.cookie-info > div.accept a:hover{
cursor:pointer;
}
@media (min-width:320px) and (max-width:480px){
.cookie-info > div.accept {
margin-right: 40%;
padding-bottom: 9px;
}
.cookie-info > .close img {
right: 25px;
bottom: 6px;
}
}
@media (min-width:480px) and (max-width:1600px){
.cookie-info > div.accept {
margin-right: 70px;
padding-bottom: 9px;
}
.cookie-info > .close img {
right: 15px;
bottom: 6px;
}
}
@media (-webkit-min-device-pixel-ratio: 3) and (min--moz-device-pixel-ratio: 3) and (-o-min-device-pixel-ratio: 3/1) and (min-device-pixel-ratio: 3) and (min-resolution: 192dpi) and (min-resolution: 2dppx) and (min-width:800px) and (max-width:960px) and (min-height:320px) and (max-height:400px) {
.cookie-info > .info {
margin-right: env(safe-area-inset-right);
padding-left: env(safe-area-inset-left);
text-align: justify;
}
.cookie-info > div.accept {
margin-right: 70px;
padding-bottom: 10px;
}
.cookie-info > .close img {
padding-right: env(safe-area-inset-right);
padding-bottom: env(safe-area-inset-bottom);
right: 15px;
bottom: 6px;
}
}
@media (-webkit-min-device-pixel-ratio: 3) and (min--moz-device-pixel-ratio: 3) and (-o-min-device-pixel-ratio: 3/1) and (min-device-pixel-ratio: 3) and (min-resolution: 192dpi) and (min-resolution: 2dppx) and (min-width:320px) and (max-width:400px) and (min-height:800px) and (max-height:960px) {
.cookie-info > .info {
margin-right: env(safe-area-inset-right);
padding-left: env(safe-area-inset-left);
text-align: justify;
}
.cookie-info > div.accept {
margin-right: 145px;
padding-bottom: 10px;
}
.cookie-info > .close img {
padding-right: env(safe-area-inset-right);
padding-bottom: env(safe-area-inset-bottom);
right: 15px;
bottom: 6px;
}
}