diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-07-05 08:16:20 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-07-05 08:16:20 +0000 |
commit | 3fc4f0d2d25e6793a0b1c073304f0cf0a44e0971 (patch) | |
tree | edf4b744024c8ee2e3de95fd10b1b25d54c0377f /wk8/pset | |
parent | b28a6dd637ff0585b63e5d4dbb55b99da59986a3 (diff) |
Fri, Jul 5, 2024, 1:16 AM -07:00
Diffstat (limited to 'wk8/pset')
-rw-r--r-- | wk8/pset/homepage/styles.css | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/wk8/pset/homepage/styles.css b/wk8/pset/homepage/styles.css index 318bdbc..ac36a3f 100644 --- a/wk8/pset/homepage/styles.css +++ b/wk8/pset/homepage/styles.css @@ -85,3 +85,38 @@ footer { background-color:var(--titleBars); text-align:center; } + +@media only screen and (max-width: 640px) { + nav ul { + list-style-image:none; + list-style-type:none; + } + #flex { + flex-wrap:wrap; + } + main { + width:100%; + order:2; + } + aside { + display:block; + width:100%; + order:1; + margin-left:0; + } + nav ul { + display:flex; + flex-wrap:wrap; + } + nav ul li { + padding-right:10px; + } + nav ul > ul { + display:none; + } + } + @media only screen and (max-height: 640px) { + nav ul > ul { + display:none; + } + } |