diff options
author | Yaroslav <contact@yaroslavps.com> | 2020-03-11 02:26:54 +0300 |
---|---|---|
committer | Yaroslav <contact@yaroslavps.com> | 2020-03-11 02:26:54 +0300 |
commit | da4917f8c673a16ba757b3b911cf5ce36895d74e (patch) | |
tree | eb36d2c213917359b50efe2b9c5bc00c2fa55543 /static/css | |
download | yaroslavps.com-da4917f8c673a16ba757b3b911cf5ce36895d74e.tar.gz yaroslavps.com-da4917f8c673a16ba757b3b911cf5ce36895d74e.zip |
initial commit
Diffstat (limited to 'static/css')
-rw-r--r-- | static/css/yaroslavps.css | 60 |
1 files changed, 60 insertions, 0 deletions
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; +} |