diff options
Diffstat (limited to 'assets/style')
-rw-r--r-- | assets/style/style.css | 29 |
1 files changed, 25 insertions, 4 deletions
diff --git a/assets/style/style.css b/assets/style/style.css index ee7964a..9c4c752 100644 --- a/assets/style/style.css +++ b/assets/style/style.css @@ -5,7 +5,7 @@ body color: var(--text-color); border: 1px solid var(--link-bg-color); - font-size: calc(10px + 0.390625vw); + font-size: calc(12px + 0.390625vw); font-family: "Courier New"; width: 90vw; @@ -108,7 +108,8 @@ h1 { margin: 0 auto; text-align: center; - border: 1px solid var(--title-color); + text-transform: uppercase; + font-size: calc(34px + 0.390625vw); } main div.h1-content { @@ -121,12 +122,27 @@ main div.h1-content { margin-bottom: 2vh; } -@media screen and (max-width: 700px) +@media screen and (min-width: 1000px) +{ + div#content + { + max-width: 850px; + margin-left: auto; + margin-right: auto; + } +} + +@media screen and (max-width: 720px) { body { - font-size: 10px; + font-size: calc(10px + 0.390625vw); } + + h1 + { + font-size: calc(24px + 0.390625vw); + } } @media screen and (max-width: 600px) @@ -136,4 +152,9 @@ main div.h1-content { flex-direction: column; gap: 0.5rem; } + h1 + { + font-size: calc(14px + 0.390625vw); + } + } |