Commit 32f154d7 by Kyle Fiedler

Added new styles for amplifier

parent 74613b1f
// JM MOSFET AMPLIFIER // JM MOSFET AMPLIFIER
div#graph-container { section.tool-wrapper {
background: #073642;
border-top: 1px solid darken(#002b36, 5%);
border-bottom: 1px solid darken(#002b36, 5%);
@include box-shadow(inset 0 0 0 4px darken(#094959, 2%));
margin: lh() (-(lh()));
padding: lh();
color: #839496;
@extend .clearfix; @extend .clearfix;
border-top: 1px solid #ddd;
padding-top: lh(1.0);
canvas#graph { div#graph-container {
width: flex-grid(4.5, 9); width: flex-grid(4.5, 9);
float: left;
margin-right: flex-gutter(9); margin-right: flex-gutter(9);
float: left;
canvas {
width: 100%;
}
} }
div.graph-controls { div#controlls-container {
@extend .clearfix;
width: flex-grid(4.5, 9); width: flex-grid(4.5, 9);
float: left; float: left;
padding-bottom: lh();
select#musicTypeSelect { div.graph-controls {
display: block; padding: lh(2) 0 lh(1.5);
border-bottom: 1px solid darken(#073642, 5%);
margin-bottom: lh(); margin-bottom: lh();
} @extend .clearfix;
div#graph-output { div.music-wrapper, div.inputs-wrapper {
display: block; float: left;
margin-bottom: lh(); width: flex-grid(2.25, 4.5);
} }
div#graph-listen { div.music-wrapper {
display: block; margin-right: flex-gutter(4.5);
margin-bottom: lh();
} }
p { div.inputs-wrapper {
margin-bottom: lh(.5); padding-top: lh(.5);
} }
div#label { select#musicTypeSelect {
display: inline-block;
}
input#playButton {
display: block; display: block;
margin-bottom: lh();
} }
}
}
div#schematic-container { div#graph-output, div#graph-listen {
@extend .clearfix; display: block;
margin-bottom: lh(.5);
canvas { p {
width: flex-grid(4.5, 9); @include inline-block();
float: left; margin: 0;
margin-right: flex-gutter(9);
} }
div.schematic-sliders { ul {
width: flex-grid(4.5, 9); @include inline-block();
float: left; margin-bottom: 0;
div.slider-label#vs { li {
margin-top: lh(2.0); @include inline-block();
margin-bottom: 0;
}
} }
div.slider-label {
margin-bottom: lh(0.5);
} }
div.slider { input#playButton {
margin-bottom: lh(1); display: block;
@include button(simple, #268bd2);
font: bold 14px $body-font-family;
} }
} }
}
//End JM MOSFET AMPLIFIER
// Labels
div.graph-controls, div#graph-listen {
label { label {
@include border-radius(2px); @include border-radius(2px);
font-weight: bold; font-weight: bold;
padding: 3px; padding: 3px;
color: #fff;
} }
//MOSFET AMPLIFIER //MOSFET AMPLIFIER
label[for="vinCheckbox"], label[for="vinRadioButton"]{ label[for="vinCheckbox"], label[for="vinRadioButton"]{
color: desaturate(#00bfff, 50%); color: desaturate(#00bfff, 50%);
} }
label[for="voutCheckbox"], label[for="voutRadioButton"]{ label[for="voutCheckbox"], label[for="voutRadioButton"]{
color: darken(#ffcf48, 20%); color: darken(#ffcf48, 20%);
} }
label[for="vrCheckbox"], label[for="vrRadioButton"]{ label[for="vrCheckbox"], label[for="vrRadioButton"]{
color: desaturate(#1df914, 40%); color: desaturate(#1df914, 40%);
} }
//RC Filters //RC Filters
label[for="vcCheckbox"], label[for="vcRadioButton"]{ label[for="vcCheckbox"], label[for="vcRadioButton"]{
color: darken(#ffcf48, 20%); color: darken(#ffcf48, 20%);
} }
//RLC Series //RLC Series
label[for="vlCheckbox"], label[for="vlRadioButton"]{ label[for="vlCheckbox"], label[for="vlRadioButton"]{
color: desaturate(#d33682, 40%); color: desaturate(#d33682, 40%);
} }
div.schematic-sliders {
div.slider-label#vs {
margin-top: lh(2.0);
}
div.slider-label {
margin-bottom: lh(0.5);
}
div.slider {
margin-bottom: lh(1);
&.ui-slider-horizontal {
height: 0.4em;
background: #002b36;
border: 1px solid darken(#002b36, 5%);
@include box-shadow(none);
}
.ui-slider-handle {
background-color: #dc322f;
margin-top: -.3em;
&:hover, &:active {
background-color: lighten(#dc322f, 5%);
}
}
}
}
}
} }
...@@ -258,6 +258,24 @@ div.course-wrapper { ...@@ -258,6 +258,24 @@ div.course-wrapper {
} }
} }
} }
div.ui-tabs {
border: 0;
@include border-radius(0);
margin: 0;
padding: 0;
.ui-tabs-nav {
background: none;
border: 0;
margin-bottom: lh(.5);
}
.ui-tabs-panel {
@include border-radius(0);
padding: 0;
}
}
} }
&.closed { &.closed {
......
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