From 0576ec066de382154036f1df6b0428ba9ff402d3 Mon Sep 17 00:00:00 2001 From: Dato Simó Date: Wed, 14 May 2014 23:57:17 +0100 Subject: Hyde theme: sync with upstream to v2.0.0. CSS is now split into poole.css and hyde.css; chrome/sidebar.html updated. Also cherry-pick: * poole/hyde@48b9d1f - Set a max-width for images --- layouts/chrome/head.html | 1 + layouts/chrome/sidebar.html | 26 +- static/css/hyde.css | 473 ++++++++-------------------------- static/css/poole.css | 403 +++++++++++++++++++++++++++++ static/css/syntax.css | 0 static/favicon.png | Bin static/touch-icon-144-precomposed.png | Bin 7 files changed, 529 insertions(+), 374 deletions(-) mode change 100755 => 100644 static/css/hyde.css create mode 100644 static/css/poole.css mode change 100755 => 100644 static/css/syntax.css mode change 100755 => 100644 static/favicon.png mode change 100755 => 100644 static/touch-icon-144-precomposed.png diff --git a/layouts/chrome/head.html b/layouts/chrome/head.html index 582750c..4ddf0fa 100644 --- a/layouts/chrome/head.html +++ b/layouts/chrome/head.html @@ -10,6 +10,7 @@
`, + * or to a parent if there are multiple elements to show. + */ + +.message { + margin-bottom: 1rem; + padding: 1rem; + color: #717171; + background-color: #f9f9f9; +} + + +/* + * Container + * + * Center the page content. + */ + +.container { + max-width: 38rem; + padding-left: 1rem; + padding-right: 1rem; + margin-left: auto; + margin-right: auto; +} + + +/* + * Masthead + * + * Super small header above the content for site name and short description. + */ + +.masthead { + padding-top: 1rem; + padding-bottom: 1rem; + margin-bottom: 3rem; +} +.masthead-title { + margin-top: 0; + margin-bottom: 0; + color: #505050; +} +.masthead-title a { + color: #505050; +} +.masthead-title small { + font-size: 75%; + font-weight: 400; + color: #c0c0c0; + letter-spacing: 0; +} + + +/* + * Posts and pages + * + * Each post is wrapped in `.post` and is used on default and post layouts. Each + * page is wrapped in `.page` and is only used on the page layout. + */ + +.page, +.post { + margin-bottom: 4em; +} + +/* Blog post or page title */ +.page-title, +.post-title, +.post-title a { + color: #303030; +} +.page-title, +.post-title { + margin-top: 0; +} + +/* Meta data line below post title */ +.post-date { + display: block; + margin-top: -.5rem; + margin-bottom: 1rem; + color: #9a9a9a; +} + +/* Related posts */ +.related { + padding-top: 2rem; + padding-bottom: 2rem; + border-top: 1px solid #eee; +} +.related-posts { + padding-left: 0; + list-style: none; +} +.related-posts h3 { + margin-top: 0; +} +.related-posts li small { + font-size: 75%; + color: #999; +} +.related-posts li a:hover { + color: #268bd2; + text-decoration: none; +} +.related-posts li a:hover small { + color: inherit; +} + + +/* + * Pagination + * + * Super lightweight (HTML-wise) blog pagination. `span`s are provide for when + * there are no more previous or next posts to show. + */ + +.pagination { + overflow: hidden; /* clearfix */ + margin-left: -1rem; + margin-right: -1rem; + font-family: "PT Sans", Helvetica, Arial, sans-serif; + color: #ccc; + text-align: center; +} + +/* Pagination items can be `span`s or `a`s */ +.pagination-item { + display: block; + padding: 1rem; + border: 1px solid #eee; +} +.pagination-item:first-child { + margin-bottom: -1px; +} + +/* Only provide a hover state for linked pagination items */ +a.pagination-item:hover { + background-color: #f5f5f5; +} + +@media (min-width: 30rem) { + .pagination { + margin: 3rem 0; + } + .pagination-item { + float: left; + width: 50%; + } + .pagination-item:first-child { + margin-bottom: 0; + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; + } + .pagination-item:last-child { + margin-left: -1px; + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; + } +} diff --git a/static/css/syntax.css b/static/css/syntax.css old mode 100755 new mode 100644 diff --git a/static/favicon.png b/static/favicon.png old mode 100755 new mode 100644 diff --git a/static/touch-icon-144-precomposed.png b/static/touch-icon-144-precomposed.png old mode 100755 new mode 100644 -- cgit 1.4.1