From 5f45aaa77b75a7d4024ce14c1e4cec815005854e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophile=20Bastian?= Date: Fri, 27 Oct 2017 11:30:30 +0200 Subject: [PATCH] Use orange as background colour --- mainsite/static/css/screen.css | 24 ++++++++++++------------ mainsite/static/sass/_colors.scss | 4 ++-- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/mainsite/static/css/screen.css b/mainsite/static/css/screen.css index c384bd9..0b95a8c 100644 --- a/mainsite/static/css/screen.css +++ b/mainsite/static/css/screen.css @@ -4,7 +4,7 @@ * Import this file using the following HTML or equivalent: * */ @import url("https://fonts.googleapis.com/css?family=Bitter:400,700|Source+Sans+Pro:400,700"); -/* line 5, ../../../../../../../var/lib/gems/2.3.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ +/* line 5, ../../../../../.gem/ruby/2.4.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, @@ -26,45 +26,45 @@ time, mark, audio, video { vertical-align: baseline; } -/* line 22, ../../../../../../../var/lib/gems/2.3.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ +/* line 22, ../../../../../.gem/ruby/2.4.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ html { line-height: 1; } -/* line 24, ../../../../../../../var/lib/gems/2.3.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ +/* line 24, ../../../../../.gem/ruby/2.4.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ ol, ul { list-style: none; } -/* line 26, ../../../../../../../var/lib/gems/2.3.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ +/* line 26, ../../../../../.gem/ruby/2.4.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ table { border-collapse: collapse; border-spacing: 0; } -/* line 28, ../../../../../../../var/lib/gems/2.3.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ +/* line 28, ../../../../../.gem/ruby/2.4.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ caption, th, td { text-align: left; font-weight: normal; vertical-align: middle; } -/* line 30, ../../../../../../../var/lib/gems/2.3.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ +/* line 30, ../../../../../.gem/ruby/2.4.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ q, blockquote { quotes: none; } -/* line 103, ../../../../../../../var/lib/gems/2.3.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ +/* line 103, ../../../../../.gem/ruby/2.4.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ q:before, q:after, blockquote:before, blockquote:after { content: ""; content: none; } -/* line 32, ../../../../../../../var/lib/gems/2.3.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ +/* line 32, ../../../../../.gem/ruby/2.4.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ a img { border: none; } -/* line 116, ../../../../../../../var/lib/gems/2.3.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ +/* line 116, ../../../../../.gem/ruby/2.4.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */ article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; } @@ -76,7 +76,7 @@ article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, /* line 17, ../sass/screen.scss */ body, html { - background: #ffe83f; + background: #e6973e; padding: 0; margin: 0; height: 100%; @@ -211,12 +211,12 @@ header { @media screen and (min-width: 600px) { /* line 126, ../sass/screen.scss */ .sidebar ul.nav li a { - box-shadow: -2px 2px 0 #f08f00; + box-shadow: -2px 2px 0 #f06e00; transition: box-shadow 0.4s ease-out, transform 0.4s ease-out; } /* line 138, ../sass/screen.scss */ .sidebar ul.nav li a:hover { - box-shadow: -6px 6px 0 #f08f00; + box-shadow: -6px 6px 0 #f06e00; transform: translateX(2px) translateY(-2px); } } diff --git a/mainsite/static/sass/_colors.scss b/mainsite/static/sass/_colors.scss index bbf2083..ea754fd 100644 --- a/mainsite/static/sass/_colors.scss +++ b/mainsite/static/sass/_colors.scss @@ -1,10 +1,10 @@ -$jaune: #ffe83f; +$jaune: #e6973e; $rouge: #8c0e00; $bleu: #4679a5; $vert: #5e8c73; $cadreclair: #fff9a4; $eau: #38669a; -$orange: #f08f00; +$orange: #f06e00; $blanc: #fff; $pfont: "Source Sans Pro", sans-serif; $hfont: "Bitter", serif;