full rewite of css

This commit is contained in:
Rosia E Evans 2023-01-07 14:21:27 +00:00
parent 397c6751f1
commit e11f2c6b82
31 changed files with 274 additions and 450 deletions

44
pages/socials.css Normal file
View file

@ -0,0 +1,44 @@
body{
margin: 0;
padding: 0;
}
#container{
display: flex;
flex-direction: column;
}
#container a{
padding: 7vh 0 7vh 0;
text-align: center;
width: 100vw;
font-size: 3rem;
}
#title{
font-size: 3rem;
text-align: center;
}
@media (orientation:portrait){
#container a{
font-size: 4rem;
text-decoration: none;
}
#container a:nth-child(odd){
background-color: var(--highlight);
color: var(--base);
}
/*hover colour*/
#container a:hover{
background-color: var(--base);
color: var(--highlight);
}
}