diff options
author | Matthew Lemon <y@yulqen.org> | 2024-03-22 16:23:09 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-03-22 16:23:09 +0000 |
commit | a9a302b7eda675413ee517778e5a82186a9a5e0d (patch) | |
tree | fed2244f04a99e8913e445a324c37b81e0fcdae5 /style.css | |
parent | ab68ea33a5841c52c854a38f9fccb493929245d7 (diff) |
Tweaked the media selectors
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -131,7 +131,7 @@ img { } .inner-grid_1 p { - font-size: 1.6rem; + font-size: 2.0rem; color: darkgray; padding-right: 100px; padding-top: 100px; @@ -185,10 +185,19 @@ img { } } +@media only screen and (max-width: 1200px) { + .inner-grid_1 p { + text-align: left; + font-size: 2.0rem; + padding-top: 10px; + padding-right: 20px; + } +} + @media only screen and (max-width: 900px) { .inner-grid_1 p { text-align: left; - font-size: 1.4rem; + font-size: 1.3rem; padding-top: 10px; padding-right: 20px; } |