Skip to content
Snippets Groups Projects
Commit fc6b086d authored by squidfunk's avatar squidfunk
Browse files

Fixed #35: Add styling for blockquotes

parent 2784a4f7
Branches
Tags
No related merge requests found
......@@ -3,6 +3,7 @@ mkdocs-material-0.2.4 (2016-06-xx)
* Fixed improperly set set default favicon
* Fixed #33: Protocol relative URL for webfonts doesn't work with file://
* Fixed #34: IE11 on Windows 7 doesn't honor max-width on main tag
* Fixed #35: Add styling for blockquotes
mkdocs-material-0.2.3 (2016-05-16)
......
This diff is collapsed.
......@@ -53,7 +53,7 @@
font-style: normal;
}
</style>
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-f851d964d4.css">
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-a422ff04cc.css">
{% if config.extra.palette %}
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/palettes-05ab2406df.css">
{% endif %}
......
......@@ -2,6 +2,6 @@
"assets/images/favicon.ico": "assets/images/favicon-e565ddfa3b.ico",
"assets/javascripts/application.js": "assets/javascripts/application-997097ee0c.js",
"assets/javascripts/modernizr.js": "assets/javascripts/modernizr-4ab42b99fd.js",
"assets/stylesheets/application.css": "assets/stylesheets/application-f851d964d4.css",
"assets/stylesheets/application.css": "assets/stylesheets/application-a422ff04cc.css",
"assets/stylesheets/palettes.css": "assets/stylesheets/palettes-05ab2406df.css"
}
\ No newline at end of file
......@@ -121,6 +121,14 @@
border-top: 1px solid rgba($black, 0.05);
}
}
/*
* Blockquote styles
*/
blockquote {
border-left: 2px solid $black-light;
color: $black-light;
}
}
/*
......
......@@ -265,6 +265,13 @@
}
}
/*
* Blockquote styles
*/
blockquote {
padding-left: 16px;
}
/*
* Data table wrapper, in case javascript is available
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment