css rework

This commit is contained in:
Rosia E Evans 2025-04-30 22:41:11 +01:00
parent c54bafaf2b
commit e2cdbc55fa
5 changed files with 165 additions and 0 deletions

32
fontScaler.css Normal file
View file

@ -0,0 +1,32 @@
.font_scaler{
position: fixed;
bottom: 0;
left: 0;
}
.font_scaler button{
background: none;
background-color: var(--backing);
border: none;
margin-left: 10px;
margin-bottom: 10px;
padding: 5px;
transition: background-color 0.5s;
}
.font_scaler img{
width: 3vw;
height: 3vw;
}
.font_scaler button::hover, .font_scaler img::hover{
background-color: grey;
}
@media (orientation: portrait) {
.font_scaler img{
width: 15vw;
height: 15vw;
}
}