Added sass and changed basic structure
Many things to do.
This commit is contained in:
parent
ad4697dd9e
commit
f2dfe32ca2
22 changed files with 1827 additions and 4 deletions
31
basic/_io.scss
Normal file
31
basic/_io.scss
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue