From 3464e8bca95e6fca9b494e9d8d7ea4df69f20ace Mon Sep 17 00:00:00 2001 From: Kyle Fiedler Date: Wed, 25 Apr 2012 21:38:55 -0400 Subject: [PATCH] More tweeks to the amp --- static/css/application.css | 6 +++++- templates/sass/courseware/_amplifier.scss | 2 ++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/static/css/application.css b/static/css/application.css index 5d99b4efb9..5bc5ea84d4 100644 --- a/static/css/application.css +++ b/static/css/application.css @@ -3818,7 +3818,10 @@ section.tool-wrapper div#controlls-container { box-shadow: 1px 0 0 #004355, inset 0 0 0 4px #06323d; } section.tool-wrapper div#controlls-container div.graph-controls { padding: 22.652px 0 22.652px; - border-bottom: 1px solid #05232b; } + border-bottom: 1px solid #05232b; + -webkit-box-shadow: 0 1px 0 #083e4b; + -moz-box-shadow: 0 1px 0 #083e4b; + box-shadow: 0 1px 0 #083e4b; } section.tool-wrapper div#controlls-container div.graph-controls div.music-wrapper, section.tool-wrapper div#controlls-container div.graph-controls div.inputs-wrapper { float: left; width: 47.207%; } @@ -3981,6 +3984,7 @@ section.tool-wrapper div#controlls-container div.schematic-sliders div.slider-la section.tool-wrapper div#controlls-container div.schematic-sliders div.slider-label { margin-bottom: 11.326px; font-weight: bold; + text-shadow: 0 -1px 0 #021014; -webkit-font-smoothing: antialiased; } section.tool-wrapper div#controlls-container div.schematic-sliders div.slider { margin-bottom: 22.652px; } diff --git a/templates/sass/courseware/_amplifier.scss b/templates/sass/courseware/_amplifier.scss index f8ef01677b..1c7946b97d 100644 --- a/templates/sass/courseware/_amplifier.scss +++ b/templates/sass/courseware/_amplifier.scss @@ -32,6 +32,7 @@ section.tool-wrapper { div.graph-controls { padding: lh() 0 lh(); border-bottom: 1px solid darken(#073642, 5%); + @include box-shadow(0 1px 0 lighten(#073642, 2%)); @extend .clearfix; div.music-wrapper, div.inputs-wrapper { @@ -138,6 +139,7 @@ section.tool-wrapper { div.slider-label { margin-bottom: lh(0.5); font-weight: bold; + text-shadow: 0 -1px 0 darken(#073642, 10%); -webkit-font-smoothing: antialiased; }