PawsAndPetals/fontScaler.css

35 lines
531 B
CSS
Raw Normal View History

2025-04-30 22:41:11 +01:00
.font_scaler{
position: fixed;
bottom: 0;
left: 0;
2025-05-16 12:04:17 +01:00
touch-action: manipulation;
2025-04-30 22:41:11 +01:00
}
.font_scaler button{
background: none;
background-color: var(--backing);
2025-05-16 12:41:40 +01:00
border: 2px solid var(--text);
2025-04-30 22:41:11 +01:00
margin-left: 10px;
margin-bottom: 10px;
padding: 5px;
transition: background-color 0.5s;
}
.font_scaler img{
width: 3vw;
height: 3vw;
}
2025-05-16 12:41:40 +01:00
.font_scaler button:hover, .font_scaler img:hover{
background-color: lightgrey;
2025-04-30 22:41:11 +01:00
}
@media (orientation: portrait) {
.font_scaler img{
width: 15vw;
height: 15vw;
}
}