jonnybarnes.uk/resources/assets/sass/components/forms.scss

55 lines
789 B
SCSS
Raw Normal View History

2016-05-19 15:01:28 +01:00
//forms.scss
form {
width: 100%;
2016-05-19 15:01:28 +01:00
}
fieldset {
min-width: 0;
width: 100%;
2016-05-19 15:01:28 +01:00
}
input[type="text"],
input[type="file"],
textarea {
width: 100%;
2016-05-19 15:01:28 +01:00
}
input,
button,
textarea {
-webkit-appearance: none;
-moz-appearance: none;
background-color: $base03;
color: $base3;
border: 1px solid $base3;
border-radius: 4px;
2016-07-18 13:27:32 +01:00
font-size: 1em;
}
textarea {
font-size: 1.2em; //textarea doesnt resize with the rest
2016-05-19 15:01:28 +01:00
}
button:hover {
transition: 0.5s ease-in-out;
background-color: $base3;
color: $base03;
2016-05-19 15:01:28 +01:00
}
button:disabled {
background-color: $base1;
color: $base03;
2016-05-19 15:01:28 +01:00
}
input[type="checkbox"] {
-webkit-appearance: checkbox;
-moz-appearance: checkbox;
2016-05-19 15:01:28 +01:00
}
#photo {
background: inherit;
color: inherit;
border: none;
2016-05-19 15:01:28 +01:00
}