add cookies

This commit is contained in:
argoexpert press
2025-06-03 23:50:58 +03:00
parent 189b7822df
commit b2aa624866
10 changed files with 114 additions and 3 deletions

View File

@@ -0,0 +1,36 @@
.cookie-consent {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: #333;
color: #fff;
padding: 15px;
z-index: 9999;
box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
text-align: center;
}
.cookie-consent-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 15px;
}
.cookie-consent-button {
background: #4CAF50;
color: white;
border: none;
padding: 8px 20px;
cursor: pointer;
border-radius: 4px;
font-weight: bold;
}
.cookie-consent-button:hover {
background: #45a049;
}

View File

@@ -49,6 +49,5 @@ h3,
.text-11 {
font-weight: 400;
font-size: 1.1rem;
line-height: 1.6rem;
}