-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (63 loc) · 1.07 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
min-height: 100vh;
background-color: #8fc1e3;
}
.cookies-box {
position: fixed;
max-width: 1000px;
left: 0;
right: 0;
bottom: -225px;
width: 100%;
background-color: #5085a5;
padding: 25px;
margin: 0 auto;
color: #112d32;
transition: all 0.3s ease;
}
.cookies-box.show {
bottom: 25px;
}
.cookies__title {
margin: 0;
padding: 0;
line-height: 18px;
}
.cookies__text {
font-size: 12px;
}
.cookies__title,
.cookies__text {
margin-bottom: 15px;
}
.cookies__link {
margin-left: 10px;
display: inline-block;
color: #8fc1e3;
}
.cookies__btn {
font-size: 16px;
padding: 10px 25px;
background-color: #8fc1e3;
color: #112d32;
border-radius: 3px;
border: none;
transition: background 0.3s;
cursor: pointer;
}
.cookies__btn--accept {
margin-right: 15px;
}
.cookies__btn:hover {
background-color: #31708e;
}
.cookies__link:hover {
color: #31708e;
}