diff options
Diffstat (limited to 'web-ui')
-rw-r--r-- | web-ui/app/scss/style-guide.scss | 6 | ||||
-rw-r--r-- | web-ui/app/style-guide.html | 9 |
2 files changed, 14 insertions, 1 deletions
diff --git a/web-ui/app/scss/style-guide.scss b/web-ui/app/scss/style-guide.scss index c9791ea3..7d18109e 100644 --- a/web-ui/app/scss/style-guide.scss +++ b/web-ui/app/scss/style-guide.scss @@ -18,6 +18,10 @@ nav { a.logo-anchor { color: white; + + &:hover { + color: darken(white, 30); + } } ul li { @@ -110,6 +114,6 @@ ul.typography li h2 { } ul.headers-and-sizes { - margin: 32px 100px 0 0; + margin: 20px 100px 0 0; display: inline-block; }
\ No newline at end of file diff --git a/web-ui/app/style-guide.html b/web-ui/app/style-guide.html index adf72bfe..c145bd9a 100644 --- a/web-ui/app/style-guide.html +++ b/web-ui/app/style-guide.html @@ -162,6 +162,15 @@ <li> <h6>Header 6</h6> </li> + <li> + <i>Italics</i><br> + </li> + <li> + <strong>Strong / Emphasized</strong><br> + </li> + <li> + <small>Small Text</small> + </li> </ul> </section> <section id="components" class="guide-section" name="components"> |