Conversion to SASS
See updated README.md for details.
This commit is contained in:
parent
83030c60c0
commit
df85ee4450
13 changed files with 513 additions and 249 deletions
34
scss/_forms.scss
Normal file
34
scss/_forms.scss
Normal file
|
@ -0,0 +1,34 @@
|
|||
input, select, textarea, button {
|
||||
display: inline-block;
|
||||
font-family: $baseFontStack;
|
||||
font-size: 1em;
|
||||
line-height: marginBottom + px;
|
||||
color: #222;
|
||||
padding: ($marginBottom / 2) - 1px;
|
||||
background-color: $inputBackgroundColour;
|
||||
border: solid 1px $inputBorderColour;
|
||||
@include border-radius(3px);
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.control-group {
|
||||
margin-bottom: $marginBottom + px;
|
||||
}
|
||||
|
||||
.control-label {
|
||||
float: left;
|
||||
width: 140px;
|
||||
}
|
||||
|
||||
.controls {
|
||||
margin-left: 160px;
|
||||
}
|
||||
|
||||
.btn {
|
||||
display: inline-block;
|
||||
background-color: $btnBackgroundColour;
|
||||
border: solid 1px $btnBorderColour;
|
||||
padding: ($marginBottom / 2) - 1px;
|
||||
@include border-radius(3px);
|
||||
@include box-shadow(3px);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue