diff options
author | Yaroslav de la Peña Smirnov <contact@yaroslavps.com> | 2018-10-06 22:05:56 +0300 |
---|---|---|
committer | Yaroslav de la Peña Smirnov <contact@yaroslavps.com> | 2018-10-06 22:05:56 +0300 |
commit | 0452ae8865c97327dbc5b1559453210e464c5e4a (patch) | |
tree | f9bb158325729fa05e67bb838b1bdf12aa3ec784 /weblog/static | |
parent | 34cb849b19614db2af73826f5e1c21bdf4da1ae1 (diff) | |
download | w3blog-0452ae8865c97327dbc5b1559453210e464c5e4a.tar.gz w3blog-0452ae8865c97327dbc5b1559453210e464c5e4a.zip |
main css
Diffstat (limited to 'weblog/static')
-rwxr-xr-x | weblog/static/weblog/css/weblog.css | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/weblog/static/weblog/css/weblog.css b/weblog/static/weblog/css/weblog.css index 0127eaa..0b7c4e6 100755 --- a/weblog/static/weblog/css/weblog.css +++ b/weblog/static/weblog/css/weblog.css @@ -12,6 +12,100 @@ html{ box-sizing: border-box; } +a, +button, +input, +textarea, +ul, +ol, +li, +p{ + font-family: "Helvetica Neue", Helvetica, sans-serif; + color: #3e3e3e; +} + +a, a:visited{ + text-decoration: none; + color: #0080a0; + transition: 0.3s; +} + +a:hover{ + color: #0055a0; +} + +.post-title, +h1, +h2, +h3, +h4, +h5, +h6{ + font-family: Georgia, serif; + color: #3e3e3e; +} + +.post-title a{ + font-family: Georgia, serif; +} + +hr{ + border: none; + height: 1px; + background: linear-gradient(to right, rgba(0, 0, 0, 0), #3e3e3e, rgba(0, 0, 0, 0)); +} + +.navbar{ + background-color: #222; +} + +.nav-container{ + padding: 0.5em 3em; +} + +.navbar-brand, .navbar-brand:visited{ + font-family: Georgia, serif; + color: #dedede; + font-size: 1.5em; +} + +.blog-container{ + position: relative; +} + +.blog-wrapper{ + display: flex; + justify-content: center; +} + +.blog-content{ + flex: 3; +} + +.weblog-sidebar{ + padding: 1em; +} + +.blog-content{ + max-width: 45em; +} + +.blogpost{ +} + +.post-publish-date, +.post-author{ + font-style: italic; +} + +.img-fluid{ + max-width: 100%; +} + +.text-right{ + text-align: right; +} + .archive-list{ list-style-type: none; } |