2016-05-19 15:01:28 +01:00
|
|
|
//forms.scss
|
|
|
|
|
|
|
|
form {
|
2016-06-20 22:25:05 +01:00
|
|
|
width: 100%;
|
2016-05-19 15:01:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fieldset {
|
2016-06-20 22:25:05 +01:00
|
|
|
min-width: 0;
|
|
|
|
width: 100%;
|
2016-05-19 15:01:28 +01:00
|
|
|
}
|
|
|
|
|
2016-06-20 22:25:05 +01:00
|
|
|
input[type="text"],
|
|
|
|
input[type="file"],
|
|
|
|
textarea {
|
|
|
|
width: 100%;
|
2016-05-19 15:01:28 +01:00
|
|
|
}
|
|
|
|
|
2016-06-20 22:25:05 +01:00
|
|
|
input,
|
|
|
|
button,
|
|
|
|
textarea {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
background-color: $base03;
|
|
|
|
color: $base3;
|
|
|
|
border: 1px solid $base3;
|
|
|
|
border-radius: 4px;
|
2016-05-19 15:01:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
button:hover {
|
2016-06-20 22:25:05 +01:00
|
|
|
transition: 0.5s ease-in-out;
|
|
|
|
background-color: $base3;
|
|
|
|
color: $base03;
|
2016-05-19 15:01:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
button:disabled {
|
2016-06-20 22:25:05 +01:00
|
|
|
background-color: $base1;
|
|
|
|
color: $base03;
|
2016-05-19 15:01:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
input[type="checkbox"] {
|
2016-06-20 22:25:05 +01:00
|
|
|
-webkit-appearance: checkbox;
|
|
|
|
-moz-appearance: checkbox;
|
2016-05-19 15:01:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#photo {
|
2016-06-20 22:25:05 +01:00
|
|
|
background: inherit;
|
|
|
|
color: inherit;
|
|
|
|
border: none;
|
2016-05-19 15:01:28 +01:00
|
|
|
}
|