diff options
author | 2018-02-26 18:49:44 +0000 | |
---|---|---|
committer | 2018-02-26 18:49:44 +0000 | |
commit | 47db7991f11a1f4e803eaf5cd331f9d6bb2de244 (patch) | |
tree | 8e9ca8a41fdf5f2b6851ef088125e4fcc18f4496 /static | |
parent | brings coverage to 90% (#24) (diff) |
Help page #z62n (#25)
* Help page and misc improvements
Committing so I can go home >:|
* Changes for @lmn
* Rephrase first paragraph
* Rephrase questions so they aren't all about discord.py
* Remove _every single header_ on the help page from the nav
* Unit test the help route
* Small styling fixes
* Add page-specific classes to body element
* Clean up section padding
* IndexView -> HelpView
* Remove unnecessary path in test
Diffstat (limited to 'static')
-rw-r--r-- | static/style.css | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css index 68789f07..fbbec5c1 100644 --- a/static/style.css +++ b/static/style.css @@ -3,6 +3,13 @@ } .uk-background-secondary .uk-navbar-dropdown-nav .uk-nav-header { + color: #666 !important; + text-transform: none !important; + font-weight: bold !important; + font-size: 120% !important; + padding: 0 !important; +} +.uk-background-secondary .uk-navbar-dropdown-nav .uk-nav-header.uk-active { color: white !important; } @@ -16,4 +23,35 @@ .uk-navbar-dropdown { top: 45px !important; +} + +.uk-article-title a { + visibility: hidden; + opacity: 0; + + transition: opacity 200ms ease-in-out; + -moz-transition: opacity 200ms ease-in-out; + -webkit-transition: opacity 200ms ease-in-out; +} + +.uk-article-title:hover a { + visibility: visible; + opacity: 1; + + transition: opacity 200ms ease-in-out; + -moz-transition: opacity 200ms ease-in-out; + -webkit-transition: opacity 200ms ease-in-out; +} + +.uk-article-title { + margin-bottom: 0 !important; +} + +.uk-article-meta { + margin-top: 0 !important; +} + +.uk-section { + padding-top: 20px; + padding-bottom: 30px; }
\ No newline at end of file |