Skip to content

Commit

Permalink
Enhance cookie consent banner styles with box-shadow and borders for …
Browse files Browse the repository at this point in the history
…improved visibility
  • Loading branch information
RoodneyMoraes committed Nov 17, 2024
1 parent 4cf2cb9 commit 3545cc5
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/css/custom-index.css
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,12 @@ footer .social-icons a {
color: var(--azure);
}

.cookie-consent-banner {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-top: 1px solid #e7e6e6;
border-bottom: 1px solid #e7e6e6;
}

/* MEDIA QUERIES - MOBILE */
@media (max-width: 768px) {
.navbar .navbar-head {
Expand All @@ -186,6 +192,10 @@ footer .social-icons a {
.cookie-consent-banner {
flex-direction: column;
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-top: 1px solid #e7e6e6;
border-bottom: 1px solid #e7e6e6;

}

.cookie-consent-banner div {
Expand Down
9 changes: 9 additions & 0 deletions src/css/custom-page.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ footer {
opacity: 0.5; /* opcional, para tornar o botão visualmente desativado */
}

.cookie-consent-banner {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-top: 1px solid #e7e6e6;
border-bottom: 1px solid #e7e6e6;
}

@media (max-width: 768px) {
h1 {
font-size: 1.5rem;
Expand Down Expand Up @@ -63,6 +69,9 @@ footer {
.cookie-consent-banner {
flex-direction: column;
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-top: 1px solid #e7e6e6;
border-bottom: 1px solid #e7e6e6;
}

.cookie-consent-banner div {
Expand Down

0 comments on commit 3545cc5

Please sign in to comment.