full rewite of css
This commit is contained in:
parent
397c6751f1
commit
e11f2c6b82
31 changed files with 274 additions and 450 deletions
|
@ -5,21 +5,24 @@
|
|||
font-weight: 100;
|
||||
src: url("../fonts/Roboto/RobotoMono-VariableFont_wght.ttf")
|
||||
}
|
||||
|
||||
html{
|
||||
font: 100%;
|
||||
}
|
||||
|
||||
body{
|
||||
color: #ffd256;
|
||||
background-color: #181818;
|
||||
color: var(--secondary);
|
||||
background-color: var(--base);
|
||||
font-family: "roboto";
|
||||
line-height: 1.3;
|
||||
|
||||
padding: 10vw 20vw 10vw 20vw;
|
||||
}
|
||||
|
||||
button{
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
color: #ffd256;
|
||||
color: var(--secondary);
|
||||
}
|
||||
|
||||
|
||||
|
@ -28,57 +31,20 @@ button:focus {
|
|||
outline: none;
|
||||
}
|
||||
|
||||
a:not(.galleryLink), a:visited:not(.galleryLink){
|
||||
color: #ffd256;
|
||||
border-radius: 2px;
|
||||
transition: background-color 0.5s, color 0.5s;
|
||||
}
|
||||
|
||||
.galleryLink{ /*class to be given to any link that doesnt want fancy yellow backgrounds on hover*/
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
h1{
|
||||
font-size: clamp(1.2rem, 4vw, 4rem);
|
||||
|
||||
padding-left: 6;
|
||||
|
||||
margin-top: 4vh;
|
||||
|
||||
text-align: center;
|
||||
|
||||
}
|
||||
|
||||
.subTitle{
|
||||
font-size: 30%;
|
||||
padding-top: 10;
|
||||
padding-left: 5;
|
||||
}
|
||||
|
||||
#socialBar{
|
||||
display: flex;
|
||||
margin-bottom: 5vh;
|
||||
margin: 2rem 0 5vh 0;
|
||||
|
||||
font-size: 1.2rem;
|
||||
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
#backButtonContainer{
|
||||
text-align: center;
|
||||
margin-bottom: 7vh;
|
||||
margin-top: 7vh;
|
||||
}
|
||||
|
||||
|
||||
.orangeBorder{
|
||||
border: 2px solid transparent;
|
||||
border-radius: 5px;
|
||||
|
||||
padding: 5px;
|
||||
|
||||
transition: border 0.5s;
|
||||
}
|
||||
|
||||
.orangeBorder:hover{
|
||||
border: 2px solid #ffd256;
|
||||
padding: 5px;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue