make heading font-size dynamic

This commit is contained in:
= 2025-03-14 22:40:55 -04:00
parent aa8bda8622
commit b4e7c5ae6f

View file

@ -75,6 +75,11 @@ func loadIndexHTML() {
background-color: #111111; background-color: #111111;
color: #6BABDA; color: #6BABDA;
} }
@media screen and (max-width: 768px) {
h1 {
font-size: 1em;
}
}
img { img {
max-width: 100%; max-width: 100%;
height: auto; height: auto;
@ -90,7 +95,6 @@ func loadIndexHTML() {
text-decoration: none; text-decoration: none;
border-bottom: 1px dotted #8CC7E7; border-bottom: 1px dotted #8CC7E7;
} }
a:hover { a:hover {
border-bottom: 1px solid #8CC7E7; border-bottom: 1px solid #8CC7E7;
} }