Update style.css

This commit is contained in:
Michi 2022-06-05 18:57:29 +02:00 committed by GitHub
parent 5b3aef5bf1
commit 1c17291817
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -192,6 +192,7 @@ body{
height: auto; height: auto;
user-select: none; user-select: none;
text-align: center; text-align: center;
margin: 0 10%;
} }
#aboutSocial a{ #aboutSocial a{
@ -295,6 +296,10 @@ body{
width: 50%; width: 50%;
} }
#insta1Container img{
border-radius: var(--borderRadius);
}
#insta2Container{ #insta2Container{
width: 100%; width: 100%;
height: auto; height: auto;
@ -640,6 +645,54 @@ body{
padding: 15px; padding: 15px;
} }
/* Privacy Banner */
#cookieBanner{
display: flex; /* FLEX */
width: 100%;
height: auto;
min-height: 200px;
color: #fff;
background: var(--theme1);
font-size: 1rem;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-around;
position: fixed;
bottom: 0;
left: 0;
}
#cookieBanner div{
max-width: 50%;
}
#cookieIcon{
font-size: 6rem;
user-select: none;
margin: 0;
}
#cookieBanner button{
width: 30%;
min-width: 80px;
height: auto;
background: #F3AD61;
color: #6D4534;
border: 2px solid #F3AD61;
border-radius: 4px;
margin: 10px;
padding: 8px;
font-size: 14px;
font-weight: bold;
transition: var(--transition);
}
#cookieBanner button:hover{
background: #6D4534;
color: #F3AD61;
border-color: #6D4534;
}
/* Scroll to the top button */ /* Scroll to the top button */
#scroll-top{ #scroll-top{
width: 40px; width: 40px;
@ -785,6 +838,11 @@ body{
flex-direction: column-reverse; flex-direction: column-reverse;
} }
#aboutImg img{
width: 90%;
margin: 0 5%;
}
/* Socialmedia Section */ /* Socialmedia Section */
#socialSelection label{ #socialSelection label{
font-size: 0.9rem; font-size: 0.9rem;
@ -845,6 +903,28 @@ body{
#contact button{ #contact button{
margin: 20px 10px; margin: 20px 10px;
} }
/* Privacy hint */
#cookieBanner{
flex-wrap: wrap;
padding: 0 auto;
}
#cookieBanner div{
width: 90%;
max-width: none;
margin: 0 5% 10px 5%;
}
#cookieBanner button{
width: 90%;
min-width: 80px;
margin: 10px 5%;
}
#cookieIcon{
display: none;
}
} }
/* Selection */ /* Selection */