Skip to content

Commit 1391629

Browse files
author
Helio Loureiro
committed
Creating 2024 backup and making it online
1 parent 74bd508 commit 1391629

File tree

153 files changed

+50210
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

153 files changed

+50210
-0
lines changed

2024/assets/css/cookie.css

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
.cookie-banner {
2+
position: fixed;
3+
bottom: 0;
4+
left: 0;
5+
width: 100%;
6+
background-color: #23374d; /* Darker shade of blue */
7+
color: white;
8+
text-align: center;
9+
padding: 20px;
10+
font-family: Arial, sans-serif;
11+
display: none; /* Hide it initially */
12+
z-index: 1000; /* Ensure it's above other elements */
13+
}
14+
15+
.cookie-banner p {
16+
margin-bottom: 20px;
17+
font-size: 16px;
18+
}
19+
20+
.cookie-banner a {
21+
color: #4eb5f1; /* Lighter blue for links */
22+
text-decoration: underline;
23+
}
24+
25+
.cookie-banner button {
26+
padding: 10px 20px;
27+
font-size: 14px;
28+
margin: 0 5px; /* Spacing between buttons */
29+
cursor: pointer;
30+
border: none;
31+
border-radius: 5px; /* Rounded corners */
32+
}
33+
34+
.cookie-banner button.cookie-accept {
35+
background-color: #4CAF50; /* Green */
36+
color: white;
37+
}
38+
39+
.cookie-banner button.cookie-decline {
40+
background-color: #f44336; /* Red */
41+
color: white;
42+
}
43+
44+
.cookie-banner button.cookie-settings {
45+
background-color: #fdd835; /* Yellow */
46+
color: black; /* Dark text for better readability on yellow */
47+
}
48+
.heart-button {
49+
background-color: transparent; /* Makes the button's background transparent */
50+
border: none; /* Removes the border */
51+
padding: 2px; /* Provides some spacing around the icon */
52+
cursor: pointer; /* Changes the cursor on hover */
53+
}
54+
55+
.heart-icon {
56+
color: red; /* Sets the heart icon color */
57+
font-size: 20px; /* Adjusts the size of the icon */
58+
}
59+
.heart-button .fa-heart {
60+
color: grey;
61+
}
62+
.heart-button[data-liked="true"] .fa-heart {
63+
color: red;
64+
}
65+
</style>
66+
67+

0 commit comments

Comments
 (0)