Commit 38098df9 by Kyle Fiedler

Merge branch 'kf-amplifier'

parents 1e736345 29dd45e5
...@@ -84,84 +84,83 @@ section.tool-wrapper { ...@@ -84,84 +84,83 @@ section.tool-wrapper {
width: flex-grid(4.5, 9); width: flex-grid(4.5, 9);
div.graph-controls { div.graph-controls {
padding: 0 0 lh();
margin-bottom: lh();
border-bottom: 1px solid darken(#073642, 5%);
@include box-shadow(0 1px 0 lighten(#073642, 2%));
@extend .clearfix;
div.music-wrapper { div.music-wrapper {
margin-right: flex-gutter(4.5); padding: 0 0 lh();
width: flex-grid(1.5, 4.5); margin-bottom: lh();
float: left; border-bottom: 1px solid darken(#073642, 10%);
@include box-shadow(0 1px 0 lighten(#073642, 2%));
@extend .clearfix;
input#playButton {
display: block;
@include button(simple, lighten( #586e75, 5% ));
font: bold 14px $body-font-family;
border-color: darken(#002b36, 6%);
float: right;
&:active {
@include box-shadow(none);
}
&[value="Stop"] {
@include button(simple, darken(#268bd2, 30%));
font: bold 14px $body-font-family;
&:active {
@include box-shadow(none);
}
}
}
} }
div.inputs-wrapper { div.inputs-wrapper {
padding-top: lh(.5); @include clearfix;
width: flex-grid(3, 4.5); margin-bottom: lh();
float: left; padding: 0 0 lh();
margin-bottom: lh();
border-bottom: 1px solid darken(#073642, 10%);
@include box-shadow(0 1px 0 lighten(#073642, 2%));
@extend .clearfix;
} }
select#musicTypeSelect { p {
display: block; @include inline-block();
margin-bottom: lh(.5); margin: 0;
font: 16px $body-font-family; -webkit-font-smoothing: antialiased;
width: 100%; font-weight: bold;
text-shadow: 0 -1px 0 darken(#073642, 10%);
} }
div#graph-output, div#graph-listen { ul {
display: block; @include inline-block();
margin-bottom: lh(.5); margin-bottom: 0;
text-align: right;
p {
@include inline-block();
margin: 0;
}
ul { li {
@include inline-block(); @include inline-block();
margin-bottom: 0; margin-bottom: 0;
li { input {
@include inline-block(); margin-right: 5px;
margin-bottom: 0;
input {
margin-right: 5px;
}
} }
} }
} }
input#playButton { div#graph-listen {
margin-top: 8px;
margin-right: 20px;
display: block; display: block;
@include button(simple, #dc322f); text-align: right;
font: bold 14px $body-font-family; float: left;
color: #47221a; margin-bottom: 0;
text-shadow: 0 1px 0 lighten(#dc322f, 5%);
@include box-shadow(inset 0 1px 0 lighten(#dc322f, 10%));
&:active {
@include box-shadow(none);
}
&[value="Stop"] {
@include button(simple, darken(#268bd2, 30%));
font: bold 14px $body-font-family;
&:active {
@include box-shadow(none);
}
}
} }
} }
label { label {
@include border-radius(2px); @include border-radius(2px);
font-weight: bold; font-weight: bold;
padding: 3px;
color: #fff; color: #fff;
padding: 3px;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
} }
...@@ -190,6 +189,29 @@ section.tool-wrapper { ...@@ -190,6 +189,29 @@ section.tool-wrapper {
div.schematic-sliders { div.schematic-sliders {
div.top-sliders {
padding: 0 0 lh();
margin-bottom: lh();
border-bottom: 1px solid darken(#073642, 10%);
@include box-shadow(0 1px 0 lighten(#073642, 2%));
@extend .clearfix;
select#musicTypeSelect {
@include inline-block();
font: 16px $body-font-family;
margin-bottom: 0;
}
p {
@include inline-block();
-webkit-font-smoothing: antialiased;
text-shadow: 0 -1px 0 darken(#073642, 10%);
margin: 0 lh(.5) lh() 0;
font-weight: bold;
}
}
div.slider-label { div.slider-label {
margin-bottom: lh(0.5); margin-bottom: lh(0.5);
font-weight: bold; font-weight: bold;
...@@ -208,11 +230,13 @@ section.tool-wrapper { ...@@ -208,11 +230,13 @@ section.tool-wrapper {
} }
.ui-slider-handle { .ui-slider-handle {
background-color: #dc322f; background: lighten( #586e75, 5% ) url('/static/images/amplifier-slider-handle.png') center no-repeat;
border: 1px solid darken(#002b36, 8%);
@include box-shadow(inset 0 1px 0 lighten( #586e75, 20% ));
margin-top: -.3em; margin-top: -.3em;
&:hover, &:active { &:hover, &:active {
background-color: lighten(#dc322f, 5%); background-color: lighten( #586e75, 10% );
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment