From da4917f8c673a16ba757b3b911cf5ce36895d74e Mon Sep 17 00:00:00 2001 From: Yaroslav Date: Wed, 11 Mar 2020 02:26:54 +0300 Subject: initial commit --- static/css/yaroslavps.css | 60 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 static/css/yaroslavps.css (limited to 'static/css') diff --git a/static/css/yaroslavps.css b/static/css/yaroslavps.css new file mode 100644 index 0000000..c65b2d4 --- /dev/null +++ b/static/css/yaroslavps.css @@ -0,0 +1,60 @@ +html, body { + width: 100%; + min-height: 100vh; + background-color: #1b1e25; + margin: 0; + padding: 0; + font-size: 18px; +} + +h1, +h2, +h3, +h4, +h5, +h6, +ul, +ol, +li, +p { + color: #dedede; +} + +ol, +ul, +li, +a, +p { + line-height: 1.3; + font-family: Cantarell, Verdana, sans-serif; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + font-family: Georgia, serif; +} + +a, a:visited { + color: #3f6e90; + text-decoration: none; +} + +a:hover { + color: #81acc1; +} + +.main-container { + display: grid; + grid-template-columns: 3fr 1fr; + max-width: 62em; + margin: 0 auto; +} + +.header-container { + grid-column-start: 1; + grid-column-end: 3; +} -- cgit v1.2.3