From 555e95319513c7c8289ffe9d188ca1899e5cf70d Mon Sep 17 00:00:00 2001 From: schneefux Date: Sat, 21 May 2016 21:41:35 +0200 Subject: migrate to hugo --- static/css/custom.css | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 static/css/custom.css (limited to 'static/css/custom.css') diff --git a/static/css/custom.css b/static/css/custom.css new file mode 100644 index 0000000..c41a1bf --- /dev/null +++ b/static/css/custom.css @@ -0,0 +1,66 @@ +body { + font-family: "Roboto", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; + background-color: #FCFCFC; +} + +h1 { font-size: 2.1rem; } +h2 { font-size: 1.9rem; } +h3 { font-size: 1.7rem; } +h4, +h5, +h6 { font-size: 1.5rem; } + +img { + max-width: 100%; + height: auto; + max-height: 40rem; + vertical-align: middle; + border: 0; +} + +header, +footer { + margin: 4rem 0; + text-align: center; +} + +main { + margin: 4rem 0; +} + +.container { + width: 90%; + max-width: 600px; +} + +.site-title { + margin-top: 2rem; +} + +.entry-title { + margin-bottom: 0; +} + +.entry-title a { + text-decoration: none; +} + +.entry-meta { + display: inline-block; + margin-bottom: 2rem; + font-size: 1.7rem; + color: #888; +} + +.footer-link { + margin: 2rem 0; +} + +.hr { + height: 1px; + margin: 2rem 0; + background: #E1E1E1; + background: -webkit-gradient(linear, left top, right top, from(white), color-stop(#E1E1E1), to(white)); + background: -webkit-linear-gradient(left, white, #E1E1E1, white); + background: linear-gradient(to right, white, #E1E1E1, white); +} -- cgit v1.3.1