diff options
author | ana <ana@ana.st> | 2021-08-04 11:36:30 +0200 |
---|---|---|
committer | ana <ana@ana.st> | 2021-08-04 11:36:30 +0200 |
commit | ea31476aa77fc70c2cb2f947760774f031d7dc4b (patch) | |
tree | 3d3f00c0f6978b7250c850f32d4c8f44c7924ace | |
parent | f76074725b44548aaef268042d35bcb1ff65faf5 (diff) | |
download | www-2-ea31476aa77fc70c2cb2f947760774f031d7dc4b.tar.gz |
Reduce heading size on small screens
-rw-r--r-- | style.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/style.css b/style.css index 7f49f16..998db0f 100644 --- a/style.css +++ b/style.css @@ -16,3 +16,9 @@ code { background-color: #eee; padding: 5px 5px; } + +@media screen and (max-width: 400px) { + h1 { + font-size: 1.5em; + } +} |