diff options
author | mattkae <mattkae@protonmail.com> | 2021-11-26 15:59:02 -0500 |
---|---|---|
committer | mattkae <mattkae@protonmail.com> | 2021-11-26 15:59:02 -0500 |
commit | 2a8544e2d2534b138b7100ea8cfb30c21358adaf (patch) | |
tree | de37243945cfcd322206160106fcda9918d74b29 | |
parent | ece64d0aa9bf0ef3aac570bf8ee0a5ab9ef752c8 (diff) |
(mkosarek) Some more sizing for mobile
-rw-r--r-- | index.css | 13 | ||||
-rw-r--r-- | index.html | 2 |
2 files changed, 9 insertions, 6 deletions
@@ -199,17 +199,12 @@ input:focus { /* Theme Selector */ #theme_selector { - position: fixed; width: 50%; display: flex; align-items: center; bottom: 1rem; } -#theme_selector > label { - font-weight: bold; -} - #theme_selector > button { width: 5rem; height: 2rem; @@ -241,6 +236,14 @@ only screen and (max-width:1280px) { font-size: 1.5rem; } + body { + width: 90vw !important; + } + + #theme_selector { + padding-bottom: 2rem !important; + } + .carousel_image_expanded_container > .carousel_image { width: 100vw; } @@ -65,8 +65,8 @@ </ul> </section> + <h2>Theme</h2> <div id="theme_selector"> - <label>Theme:</label> <button id="theme_button_default">Default</button> <button id="theme_button_autumn">Autumn</button> </div> |