diff options
author | Alexander Kabui | 2020-11-26 15:01:42 +0300 |
---|---|---|
committer | Alexander Kabui | 2020-11-26 15:01:42 +0300 |
commit | 7a669eb9b9674ebffba8917f42833c71bfe36255 (patch) | |
tree | 45ec132a62697e50bd35a7081277f63b7a820a59 | |
parent | 76ef7a0479473c0716e7178c524f4a3ae02df16c (diff) | |
download | genenetwork2-7a669eb9b9674ebffba8917f42833c71bfe36255.tar.gz |
add css for container
-rw-r--r-- | wqflask/wqflask/static/new/css/markdown.css | 72 |
1 files changed, 46 insertions, 26 deletions
diff --git a/wqflask/wqflask/static/new/css/markdown.css b/wqflask/wqflask/static/new/css/markdown.css index d8dd4776..ad665835 100644 --- a/wqflask/wqflask/static/new/css/markdown.css +++ b/wqflask/wqflask/static/new/css/markdown.css @@ -2,7 +2,10 @@ padding: 20px; } -#markdown h2, #markdown h3, #markdown h4, #markdown h5 { +#markdown h2, +#markdown h3, +#markdown h4, +#markdown h5 { font-weight: bold; } @@ -11,36 +14,53 @@ margin-right: auto; margin-left: auto; } -#markdown { - background: red; + + + +.github-btn { + margin: 20px 10px; + display: flex; + width: 90vw; + justify-content: flex-end; } +.github-btn a { + display: inline-block; + align-self: center; + text-decoration: none; + transition-property: all; + transition-duration: 0.5s; + padding: 8px 12px; + color: #fff; + /*background: #27407a;*/ + background: blue; + border-radius: 20px; + + /*text-align: center;*/ + +} - .github-btn{ - margin:20px 10px; - display: flex; - width: 90vw; - justify-content: flex-end; - } - .github-btn a{ - display: inline-block; - align-self:center; - text-decoration: none; - transition-property:all; - transition-duration:0.5s; - padding:8px 12px; - color:#fff; - /*background: #27407a;*/ - background: blue; - border-radius: 20px; - background: red; - /*text-align: center;*/ +.github-btn a:hover { + background: #333; - } - .github-btn a:hover{ +} - background: #333; - } +.container { +width:80vw; +margin: auto; +max-width:80vw; + +} + +.container p { + font-size: 17px; + word-spacing: 0.2em; +} +@media(max-width:650px){ + .container{ + width: 100vw; + } +}
\ No newline at end of file |