diff options
author | Valentin Heinz <inktrap@users.noreply.github.com> | 2017-04-08 14:03:25 +0200 |
---|---|---|
committer | Alexis Metaireau <alexis@notmyidea.org> | 2017-04-08 14:03:25 +0200 |
commit | 5c231ceade17e7f5b1bba90e845dd2d17e54da1c (patch) | |
tree | f4f07dbbac2c51c8a0af1e1a24f11e030a2e4155 /uikit/static/css/custom.css | |
parent | 00986ab80df4b6be2d1306671907e2b2378e487f (diff) | |
download | pelican-themes-5c231ceade17e7f5b1bba90e845dd2d17e54da1c.tar.gz |
uikit demo theme ported to pelican (#385)
Diffstat (limited to 'uikit/static/css/custom.css')
-rw-r--r-- | uikit/static/css/custom.css | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/uikit/static/css/custom.css b/uikit/static/css/custom.css new file mode 100644 index 0000000..572318d --- /dev/null +++ b/uikit/static/css/custom.css @@ -0,0 +1,65 @@ +.capitalize { + text-transform: capitalize; +} + +.uk-navbar-nav li { + text-transform: capitalize; + line-height: 1em; + vertical-align: middle; +} + +/* + * add vertical spacing to social icons +*/ +.icons>a { + margin-bottom: 0.3em; +} + +/* + * add spacing between the icon and the description +*/ +.uk-icon-tag::before, +.uk-icon-rss-square::before, +.uk-icon-external-link::before +{ + margin-right: 0.2em; +} + +/* + * add additional spacing because the description should be separated from the + * next icon more thant the icon from the description +*/ +/* +.uk-icon-rss-square, +*/ +.uk-icon-tag +{ margin-right: 0.5em; } + +/* + * add spacing to the license links +*/ +.license +{ padding-right: 0.5em; } + +/* + * the special entity in a heading that + * needs to be formatted differently +.entity { + text-transform: none; + font-family: italic; + font-weight: lighter; +} + */ + +/* + * a heading for small messages + * */ +.heading { + text-transform: uppercase; + text-align: left; + font-family: sans-serif; + font-style: italic; + font-size: 1.0em; + opacity: 0.4; +} + |