make heading font-size dynamic
This commit is contained in:
parent
aa8bda8622
commit
b4e7c5ae6f
1 changed files with 5 additions and 1 deletions
6
main.go
6
main.go
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue