From a43e68c7d198a0737813ac0617d2639951a6f8c7 Mon Sep 17 00:00:00 2001 From: Ant Zucaro Date: Sat, 28 Feb 2015 16:16:31 -0500 Subject: [PATCH] Port over foundation-specific overrides. --- xonstat/static/css/app.css | 111 +++++++++++++++++++++++++++++++++++-- 1 file changed, 105 insertions(+), 6 deletions(-) diff --git a/xonstat/static/css/app.css b/xonstat/static/css/app.css index f7fb753..0920677 100644 --- a/xonstat/static/css/app.css +++ b/xonstat/static/css/app.css @@ -1,6 +1,6 @@ /* Fonts */ @font-face { - font-family: 'XoloniumNormal'; + font-family: 'Xolonium'; src: url('fonts/xolonium.eot'); src: url('fonts/xolonium.eot?#iefix') format('embedded-opentype'), url('fonts/xolonium.ttf') format('truetype'), @@ -10,10 +10,109 @@ font-style: normal; } -/* Primary elements */ body { - background: url("img/bg.jpg") no-repeat fixed center center / cover black; - background-color: black; - color: #D0D0D0; - font-family: "XoloniumNormal", "Helvetica Neue", Helvetica, Arial, sans-serif; + background-color: #0F0F0F; + background: url("img/bg.jpg") no-repeat fixed center center / cover black; + color: #9B9B9B; + font-family: "Xolonium", "Helvetica Neue", Helvetica, Arial, sans-serif; +} + +h1, h2, h3, h4, h5 { + color: #C3C3C3;; + font-family: "Xolonium", Helvetica, Arial, sans-serif; +} + +p { + color: #C3C3C3; + font-size: 1.3rem; +} + +hr { + border-color: #1b1b1b; +} + +ul, ol, dl { + font-size: 1.1rem; +} + +.top-bar { + height: 50px; +} + +.top-bar .name h1 a { + color: rgb(200, 200, 200); + font-size: 1.1rem; + text-shadow: 0px 1px 1px rgba(200, 200, 200, 0.4); +} + +.top-bar-section ul li { + background: none; +} + +.top-bar-section ul li > a { + color: rgb(200, 200, 200); + font-family: 'Xolonium'; + font-size: 1rem; + text-shadow: 0px 1px 1px rgba(200, 200, 200, 0.4); +} + +.top-bar-section li:not(.has-form) a:not(.button) { + line-height: 50px; +} + +.top-bar, .contain-to-grid { + background: linear-gradient( rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 95% ); + margin-bottom: 15px; +} + +.top-bar.expanded .title-area { + background: none; +} + +.top-bar-section li:not(.has-form) a:not(.button) { + background: none; +} + +.top-bar-section li:not(.has-form) a:not(.button):hover { + background: #333; +} + +.panel { + background-color: #151515; + border-color: rgb(40, 40, 40); +} + +.panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6, .panel p, .panel li, .panel dl { + color: #777777; +} + +.th { + box-shadow: 0 0 6px 1px rgba(0, 140, 186, 0.4); +} + +.th:hover, .th:focus { + box-shadow: 0 0 6px 1px rgba(0, 140, 186, 0.7); +} + + +/* Footer */ +#footer { + background: linear-gradient( rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 95% ); + font-family: sans-serif; + font-style: italic; + margin: 15px 0px 0px 0px; + padding-top: 5px; + width: 100%; +} + +#footer p { + color: white; + margin-bottom: 0.5rem; + text-align: center; +} + +#footer ul { + font-size: 1rem; + list-style: none; + margin-left: 0; } -- 2.39.2