mirror of
https://github.com/michivonah/website-v2.git
synced 2025-12-22 20:46:29 +01:00
Update style.css
This commit is contained in:
parent
5b3aef5bf1
commit
1c17291817
1 changed files with 80 additions and 0 deletions
80
style.css
80
style.css
|
|
@ -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 */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue