Newer
Older
content: "";
display: block;
position: absolute;
right: -10%;
bottom: 0;
border-radius: 50px;
width: 30px;
height: 30px;
background-color: var(--marblue);
}
#cookies > div > p {
font-family: "Roboto Condensed", sans-serif;
color: rgb(102, 102, 102);
font-weight: 300;
margin-left: 1rem;
}
#cookies > img {
}
#cookies button {
width: 8rem;
height: 100%;
border-radius: 200px 200px 200px 200px;
/* background-color: rgb(136, 164, 255); */
/* color: black; */
}
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
top: -15px;
left: 5rem;
height: 100px;
}
@media screen and (min-width: 768px) {
#cookies {
position: fixed;
bottom: 1.5rem;
left: 1.8rem;
display: flex;
gap: 1rem;
}
#cookies::after {
display: none;
}
#cookies > div {
background: rgb(255, 255, 255);
display: flex;
align-items: center;
text-align: right;
gap: 1rem;
width: 23rem;
margin-top: 1.1rem;
border-radius: 20px 300px 300px 500px;
padding: 0.8rem 1rem;
}
#cookies > img {
height: 5rem;
}
}