Added sass and changed basic structure

Many things to do.
This commit is contained in:
Stephan 2016-12-01 15:37:49 +01:00
parent ad4697dd9e
commit f2dfe32ca2
22 changed files with 1827 additions and 4 deletions

31
basic/_io.scss Normal file
View file

@ -0,0 +1,31 @@
// Input/Output styles
// ------------------------------------------------------------------------------
// Common
fieldset {
margin: $basic_space 0;
border: $basic_border;
}
legend {
@extend %basic;
padding: 0 $half_space;
}
label {
@extend %basic;
display: table;
margin: $half_space 0;
input {
display: table-cell;
margin-left: $basic_space;
padding: $half_space ($half_space + 1);
border-style: solid;
border-color: transparent;
background-color: $basic_io_background_color;
color: $basic_io_font_color;
&:hover {
background-color: $black;
color: $white;
}
}
}