X-Git-Url: https://jfr.im/git/irc/freenode/web-7.0.git/blobdiff_plain/361c2fab57fce88e138a47d0378a7973b159e9eb..f98f5e4a9c06a4ed80034387f3ac2beb55846781:/static/css/style.css diff --git a/static/css/style.css b/static/css/style.css index f35dcb745..567f9ea85 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -1,21 +1,44 @@ /* vars */ :root { - --navbar-bg: #fff; - --jumbotron-bg: #eee; - --jumbotron-bg-fall: 65,225,64; - --copyright-bg: 170,178,171; - --link-color: 66,139,202; - --footer-link-color: 51,51,51; - --nlink-col: #000; - --text-color: #333; - --footer-text-color: 51,51,51; - --copyright-text-color: 0,0,0; - --jumbotron-text-color: #333; - --border-color: 0,0,0; - --footer-border-color: 51,51,51; - --box-hover-color: #ddd; - --box-round: 10px; -} + --c-dark: #292f2f; + --c-bg-dark: #3a4346; + --c-bg-light: #4c5456; + --c-light: #ecf7fa; + --c-hl-dark: #008499; + --c-hl-light: #3baec4; + + /* backgrounds */ + --navbar-bg: var(--c-dark); + --jumbotron-bg: var(--c-bg-dark); + --copyright-bg: var(--c-dark); + + /* link colors */ + --link-color: var(--c-hl-dark); + --link-hover-color: var(--c-hl-light); + --footer-link-color: var(--c-light); + --footer-hover-color: #fff; + + /* text colors */ + --text-color: var(--c-dark); + --footer-text-color: var(--c-light); + --copyright-text-color: var(--c-light); + --jumbotron-text-color: var(--c-light); + --art-date-color: color(var(--c-dark) tint(50%)); + + /* box colors */ + --border-color: var(--c-dark); + --box-color: var(--c-bg-light); + --box-hover-color: var(--c-dark);; + --box-round: 10px; + + /* other */ + --max-width: 600px; + --max-width-box: 800px; + --margin-box-fa: 5px; +} +@custom-media --max-sm all and (max-width: 600px); +@custom-media --max-md all and (max-width: 800px); +@custom-media --max-rem all and (max-width: 60rem); /* reset css for browser compat */ * { @@ -27,6 +50,8 @@ /* global */ body { font-family: 'Open Sans'; + font-feature-settings: "lnum"; + font-variant-numeric: lining-nums; color: var(--text-color); font-size: 14px; min-height: 100vh; @@ -34,15 +59,23 @@ body { } a { - color: rgb(var(--link-color)); + color: var(--link-color); text-decoration: none; } +a:hover { + color: var(--link-hover-color); +} +img { + max-width: 100%; +} + /* navbar */ .navbar { width: 100%; height: 50px; background-color: var(--navbar-bg); + box-shadow: 0 3px 4px rgba(0, 0, 0, 0.5); position: fixed; left: 0; right: 0; @@ -51,36 +84,67 @@ a { flex-wrap: nowrap; justify-content: space-between; align-items: center; - border-bottom: 1px solid rgba(var(--border-color),.3); + border-bottom: 1px solid var(--border-color); z-index: 100; + padding-right: 5px; } -.nlogo { - height: 40px; +@media (--max-sm); { + .navbar { + position: absolute; + } } -.navlinks { - display: flex; - justify-content: space-around; - flex-wrap: nowrap; +.navbar a { + margin-top: 2px; + height: 40px; } -.nlink { - text-decoration: none; - color: var(--nlink-col); +.nlogo { + height: 40px; } /* main */ .container { - padding: 50px 0 0; width: 100%; - min-height: 68vh; + min-height: 98vh; + padding-top: 50px; + padding-bottom: 11.5rem; } .main { - margin-left: .5em; - margin-top: 1em; - margin-bottom: 1em; + margin: 0 auto; + margin-top: .75em; + padding: 0 .75em; + max-width: var(--max-width); + line-height: 1.4; +} + +.main h1, +.main h2, +.main h3, +.main h4, +.main li, +.main pre, +.main p { + margin-top: .7em; +} + +.main h1 + p, +.main h2 + p, +.main h3 + p, +.main h3 + p { + margin-top: 0; +} + +ul { + padding-left: 2em; + list-style-type: disc; +} + +hr { + margin-top: .8em; + margin-bottom: .8em; } /* jumbotron */ @@ -88,17 +152,18 @@ a { position: relative; width: 100%; margin-top: -16px; - background: #000; background: var(--jumbotron-bg); - box-shadow: 0 3px 5px rgba(150,150,150,.36); + box-shadow: 0 1px 5px rgba(0, 0, 0, 0.6); color: var(--jumbotron-text-color); + padding: 2em 0; } .child { text-align: center; - margin: .5em; + margin: .5em auto; font-size: 32px; line-height: 48px; + max-width: 75%; } .box-container { @@ -106,171 +171,215 @@ a { flex-wrap: wrap; justify-content: space-around; align-items: stretch; + max-width: var(--max-width-box); + margin: 0 auto; } .box { - text-align: left; + text-align: center; text-decoration: none; - color: var(--text-color); + color: var(--jumbotron-text-color); margin-bottom: 5px; - padding: 5px; flex-basis: 30%; - background-color: #fff; + min-width: 26%; + background-color: var(--box-color); border-radius: var(--box-round); - -webkit-border-radius: var(--box-round); - -moz-border-radius: var(--box-round); + padding: 1em; } .box:hover,.box:active { + color: var(--jumbotron-text-color); background-color: var(--box-hover-color); } .box div{ - font-size: 28px; - line-height: 28px; - padding-left: 8px; - font-weight: 700; position: relative; - display: inline; - top: -10px; + top: initial; + font-size: 20px; + font-weight: 600; + line-height: 16px; + display: block; + margin-top: .75em; } .fa-users { - margin-top: 5px; + margin-top: var(--margin-box-fa); } .fa-comment,.fa-question { - margin-bottom: 5px; -} - -.fa-4x { - padding-left: 8px; + margin-bottom: var(--margin-box-fa); } .title { text-align: center; } -/* articles feed */ +@media (--max-md) { + .box { + text-align: center; + } + + .child { + font-size: 20px; + line-height: 30px; + padding: 10px 0 5px; + } + + .fa-4x { + padding: 0; + margin: 0; + width: 60px; + text-align: center; + font-size: 28px; + } + + .box-container { + flex-direction: column; + margin: 0 .5em; + } + + .box div { + font-size: 22px; + line-height: 22px; + padding-left: 8px; + font-weight: 700; + position: relative; + display: inline; + text-align: center; + } + + .box { + text-align: left; + border-radius: calc(var(--box-round) / 2); + margin: 5px 0; + } +} + +/* articles */ h1 { margin: 0; } -div.art { - border-bottom: 1px solid rgba(var(--border-color),.3); +.art-info { + line-height: 1.6; + display: flex; + flex-direction: row; + flex-wrap: wrap; + justify-content: space-between; + align-items: baseline; } -div.art:last-child { - border-bottom: none; +.art-info h1 { + margin-top: 0; + display: inline; } -b.art { - margin-bottom: 0; - font-size: 18px; +.art-body { + margin-bottom: 1em; } -p.art { - margin: 0; +.artlist { + max-width: var(--max-width); + margin: 0 auto; + margin-top: .5em; } -p.art-ingress { - font-style: italic; - margin: 0; +.artlist .art-info:not(:first-child) { + border-top: 1px solid var(--border-color); } .art-date { - color: #ccc; - margin: 0; -} - -p.heading { + display: inline-block; + text-align: baseline; + line-height: 1; white-space: nowrap; + color: var(--art-date-color); + font-feature-settings: "tnum"; + font-variant-numeric: tabular-nums; } -p.art-link { - margin-top: 0; -} - -/* Article */ -.art-full h1, -.art-full h2, -.art-full h3, -.art-full h4 {} - -/* help */ -.hmain { +.art-nav { display: flex; - flex-wrap: wrap; - justify-content: space-around; - align-items: stretch; + flex-direction: row; + justify-content: space-between; + width: 100%; } -a.hchild { - color: var(--text-color); -/*height: 40px;*/ - width: 95%; - text-align: center; - border-top: 1px solid rgba(var(--border-color),.6); - border-left: 1px solid rgba(var(--border-color),.6); - border-right: 1px solid rgba(var(--border-color),.6); -} +@media (--max-md) { + .main.artlist { + padding-left: 0; + padding-right: 0; + } -a.hchild:hover,a.hchild:active { - background-color: var(--box-hover-color); + .artlist .art-info { + padding: 0 .75em; + } } -.hchild:first-child { - margin-top: 10px; - -webkit-border-top-left-radius: var(--box-round); - -webkit-border-top-right-radius: var(--box-round); - -moz-border-radius-topleft: var(--box-round); - -moz-border-radius-topright: var(--box-round); - border-top-left-radius: var(--box-round); - border-top-right-radius: var(--box-round); +/* faq */ +.faq-index { + list-style-type: none; + padding-left: 0; } -.hchild:last-child { - margin-bottom: 10px; - border-bottom: 1px solid rgba(var(--border-color),.6); - -webkit-border-bottom-right-radius: var(--box-round); - -webkit-border-bottom-left-radius: var(--box-round); - -moz-border-radius-bottomright: var(--box-round); - -moz-border-radius-bottomleft: var(--box-round); - border-bottom-right-radius: var(--box-round); - border-bottom-left-radius: var(--box-round); +.faq-index li { + font-size: 120%; } /* footer */ .footers { - min-height: 30vh; + /*min-height: 30vh;*/ + margin-top: -11rem; + min-height: 11rem; } .footer { background: var(--jumbotron-bg); - color: rgba(var(--footer-text-color),.9); + color: var(--footer-text-color); + width: 100%; margin-top: 2vh; + box-shadow: 0 -3px 5px rgba(150,150,150,.36); + min-height: 9.5rem; +} + +.footer-container { display: flex; - flex-wrap: nowrap; - min-height: 27vh; + flex-wrap: wrap; justify-content: space-between; align-items: flex-start; - box-shadow: 0 -3px 5px rgba(150,150,150,.36); + margin: 0 auto; } .footerchild { + margin: 0 2em; margin-top: .5em; + flex: 1 1 1px; } -.footer a { - color: #000; +.footerchild:last-child { + margin-bottom: 1em; +} + +.footer-push { + margin-left: auto; + width: max-content; +} + +footer a { + color: var(--footer-link-color); +} + +footer a:hover { + color: var(--footer-hover-color); } .footer h2 { - margin-bottom: 9px; + margin-bottom: .1em; display: inline-block; } -.footerchild ul,.footerchild ul ul { +.footerchild ul, .footerchild ul ul { + padding-left: 0; margin-left: 10px; margin-right: 10px; list-style-type: none; @@ -280,13 +389,13 @@ a.hchild:hover,a.hchild:active { padding-left: 30px; } -@media all and (max-width: 500px) { - .footer { +@media (--max-md) { + .footer-container { flex-direction: column; } - .footerchild { - width: 100%; + .footer-push { + margin-left: 0; } .footerchild ul li:last-child { @@ -296,77 +405,51 @@ a.hchild:hover,a.hchild:active { .hdn { display: none; } - - .box { - text-align: center; - } - - .child { - font-size: 20px; - line-height: 30px; - padding: 10px 0 5px; - } - - .fa-4x { - padding: 0; - margin: 0; - } - - .box div { - position: relative; - top: initial; - font-size: 16px; - font-weight: normal; - line-height: 16px; - padding: 10px 0; - display: block; - } } -.footer h2,.footer h3 { +.footer h2, .footer h3 { margin-left: 10px; margin-right: 10px; } -.copyright { +footer.copyright { display: flex; - flex-wrap: nowrap; + flex-wrap: wrap; justify-content: space-between; + background: var(--copyright-bg); + min-height: 1.5rem; + color: var(--copyright-text-color); + padding-left: .5em; + padding-right: .5em; + overflow: hidden; +} + +footer.copyright div { + display: flex; align-items: center; - background: rgba(var(--copyright-bg),.5); - height: 3vh; - color: rgba(var(--copyright-text-color),.8); + height: 1.5rem; + line-height: 1.5rem; + vertical-align: top; } -a.copyright { - background: rgba(var(--copyright-bg),.5); - margin-bottom: 0; - margin-top: 0; - margin-left: .5em; - margin-right: .5em; - width: auto; - height: auto; +.copyright * { + margin: 0; + height: 1.5rem; + line-height: 1.5rem; } -.copyright a img { - height: 3vh; - width: auto; +.copyright .fa { + height: 100%; + vertical-align: top; + font-size: 1.4em; } -.copyright p { - margin-bottom: 0; - margin-top: 0; - margin-left: .5em; +.copyright .footer-link { + height: 28px; margin-right: .5em; - text-align: right; } -@media all and (max-width: 500px) { - .copyright { - height: 5vh; - } - - .copyright a img { - height: 5vh; - } +.copyright img { + height: 1.5rem; + width: auto; }