From bcd79ba2c55de3202f1e9b4b9b6070b36cfdb7db Mon Sep 17 00:00:00 2001 From: James Mills Date: Wed, 25 Mar 2020 23:02:04 +1000 Subject: Refactor UX of Trending vs. Recent video sorting --- static/theme.css | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) (limited to 'static') diff --git a/static/theme.css b/static/theme.css index b0e5da2..bdafeea 100644 --- a/static/theme.css +++ b/static/theme.css @@ -400,3 +400,65 @@ label span input { transform: translate(24px, 0); } } + +.nav ul { + list-style: none; + background-color: #444; + text-align: center; + padding: 0; + margin: 0; +} +.nav li { + font-family: 'Oswald', sans-serif; + font-size: 1.2em; + line-height: 40px; + height: 40px; + border-bottom: 1px solid #888; +} + +.nav a { + text-decoration: none; + color: #fff; + display: block; + transition: .3s background-color; +} + +.nav a:hover { + background-color: #005f5f; +} + +.nav a.active { + background-color: #fff; + color: #444; + cursor: default; +} + +@media screen and (min-width: 600px) { + .nav li { + width: 120px; + border-bottom: none; + height: 50px; + line-height: 50px; + font-size: 1.4em; + } + + /* Option 1 - Display Inline */ + .nav li { + display: inline-block; + margin-right: -4px; + } + + /* Options 2 - Float + .nav li { + float: left; + } + .nav ul { + overflow: auto; + width: 600px; + margin: 0 auto; + } + .nav { + background-color: #444; + } + */ +} -- cgit v1.2.3