-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
51 lines (44 loc) · 835 Bytes
/
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
.navbar {
font-family: 'Homemade Apple', cursive;
text-shadow: 1px 1px 2px #00000039;
}
.navbar-brand {
font-size: 2rem;
padding-top: 1rem;}
.mynavbtn {
padding-top: 0.75em;
}
footer {
margin-top: 1rem;
}
.container {
text-shadow: 1px 1px 1px #00000039;
}
.cookie-container {
position: fixed;
bottom: -100%;
left: 0;
z-index: 99;
right: 0;
background: #2f3640;
color: #f5f6fa;
padding: 0 32px;
box-shadow: 0 -2px 16px rgba(47, 54, 64, 0.39);
transition: 400ms;
}
.cookie-container.active {
bottom: 0;
}
.cookie-container a {
color: #f5f6fa;
}
.cookie-btn {
background: #e84118;
border: 0;
color: #f5f6fa;
padding: 12px 48px;
font-size: 18px;
margin-bottom: 16px;
border-radius: 8px;
cursor: pointer;
}