summaryrefslogtreecommitdiffstats
path: root/docs/static/css
diff options
context:
space:
mode:
authorAnthony Fok <foka@debian.org>2014-08-31 03:43:25 -0600
committerspf13 <steve.francia@gmail.com>2014-09-01 08:21:42 -0400
commitd2020506842eea3a9b6dc6335580f72ef415b690 (patch)
tree8ad3ddb30fdf34deefd7c6f92c4f1047693a2cca /docs/static/css
parenta6022293af0df79ca451e9e9f398b635ab2252be (diff)
Fix loading of Lato font in style.css for docs
The "@import url()" statement for loading Lato from Google Fonts was ignored because "@import are not allowed after any valid statement other than @charset and @import" according to the W3C CSS Validator. Also remove the line for importing line-icons.css which no longer exists.
Diffstat (limited to 'docs/static/css')
-rwxr-xr-xdocs/static/css/style.css8
1 files changed, 3 insertions, 5 deletions
diff --git a/docs/static/css/style.css b/docs/static/css/style.css
index 44c83c3cf..a19a9b117 100755
--- a/docs/static/css/style.css
+++ b/docs/static/css/style.css
@@ -1,3 +1,5 @@
+/* Import fonts */
+@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700,900,300italic,400italic,700italic,900italic);
/* ******************************
For the github btn
@@ -90,13 +92,9 @@ h1, h2, h3 {
pre code {
font-size: 18px !important;
- font-family: "courier new", monospace;
+ font-family: 'Courier New', monospace;
}
-/* Import fonts */
-@import url(http://fonts.googleapis.com/css?family=Lato:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic);
-@import url(line-icons.css);
-
body {
color: #353b44;
background: #edece4;