mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-28 13:31:06 +00:00
fd73c12558
Improved font weights
315 lines
5.8 KiB
SCSS
315 lines
5.8 KiB
SCSS
/*
|
|
Forms
|
|
*/
|
|
|
|
form {
|
|
|
|
.inline {
|
|
float: left;
|
|
display: inline-block;
|
|
width: auto;
|
|
margin-bottom: em(20);
|
|
|
|
input {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.fields {
|
|
> .field_with_errors:first-child,
|
|
> label {
|
|
padding: em(11) 0;
|
|
line-height: em(16);
|
|
}
|
|
|
|
> .field_with_errors {
|
|
|
|
input,
|
|
textarea {
|
|
border: $input-border-width solid $flash-error;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
border-color: $flash-error;
|
|
}
|
|
|
|
&:focus {
|
|
color: $input-text;
|
|
}
|
|
}
|
|
}
|
|
|
|
.select-wrapper {
|
|
$select-padding: em(7);
|
|
|
|
border-radius: $input-border-radius;
|
|
background-color: $input-primary;
|
|
border: $input-border-colour solid $input-border-width;
|
|
position: relative;
|
|
display: inline-block;
|
|
margin-right: em(10);
|
|
float: left;
|
|
max-width: 100%;
|
|
|
|
select {
|
|
@include appearance(none);
|
|
font-size: $input-font-size;
|
|
font-family: $open-sans;
|
|
float: left;
|
|
display: block;
|
|
width: auto;
|
|
position: relative;
|
|
line-height: em(22);
|
|
vertical-align: middle;
|
|
max-height: em(36);
|
|
margin-left: 0;
|
|
border: 0;
|
|
margin: 0;
|
|
padding: $select-padding em(50) $select-padding $input-padding;
|
|
font-size: $input-font-size;
|
|
max-width: 100%;
|
|
|
|
option {
|
|
font-size: $input-font-size;
|
|
}
|
|
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
}
|
|
|
|
&:after {
|
|
font-family: $fontawesome;
|
|
pointer-events: none;
|
|
content: $fa-var-chevron-down;
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
text-align: center;
|
|
padding-top: em(6);
|
|
width: em(36);
|
|
height: em(32);
|
|
border-left: $input-border-width solid $input-border-colour;
|
|
color: $input-border-colour;
|
|
}
|
|
|
|
&:hover {
|
|
border: $input-border-width solid lighten($input-secondary, 20%);
|
|
|
|
&:after {
|
|
border-left: $input-border-width solid lighten($input-secondary, 20%);
|
|
color: $base-font-color;
|
|
}
|
|
}
|
|
|
|
&:focus {
|
|
border: $input-border-width solid $input-secondary;
|
|
color: $input-secondary;
|
|
}
|
|
}
|
|
|
|
input[type=text],
|
|
input[type=password],
|
|
input[type=email],
|
|
textarea {
|
|
border-radius: $input-border-radius;
|
|
background-color: $input-primary;
|
|
color: $input-text;
|
|
font-size: $input-font-size;
|
|
padding: 0 $input-padding;
|
|
height: em(40);
|
|
border: $input-border-colour solid $input-border-width;
|
|
|
|
&:hover {
|
|
border: $input-border-width solid lighten($input-secondary, 20%);
|
|
}
|
|
|
|
&:focus {
|
|
border: $input-border-width solid $input-secondary;
|
|
outline: none;
|
|
}
|
|
|
|
&[disabled] {
|
|
|
|
&:hover {
|
|
border-color: $input-border-colour;
|
|
cursor: not-allowed;
|
|
}
|
|
}
|
|
}
|
|
|
|
textarea {
|
|
padding: $input-padding;
|
|
font-family: $open-sans;
|
|
}
|
|
|
|
.inputs label.checkbox,
|
|
> label.checkbox {
|
|
position: relative;
|
|
width: em(40);
|
|
height: em(40);
|
|
overflow: hidden;
|
|
|
|
&:before {
|
|
@include box-sizing(border-box);
|
|
content: "";
|
|
display: block;
|
|
border-radius: $input-border-radius;
|
|
width: em(40);
|
|
height: em(40);
|
|
padding: $input-padding;
|
|
background-color: $input-primary;
|
|
border: $input-border-colour solid $input-border-width;
|
|
margin: 0;
|
|
}
|
|
|
|
&:hover {
|
|
|
|
&:before {
|
|
border: $input-border-width solid lighten($input-secondary, 20%);
|
|
}
|
|
}
|
|
}
|
|
|
|
input[type=checkbox] {
|
|
display: none;
|
|
|
|
&:checked {
|
|
|
|
& + label.checkbox:before {
|
|
content: $fa-var-check;
|
|
pointer-events: none;
|
|
font-family: $fontawesome;
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
color: $light-blue;
|
|
}
|
|
}
|
|
}
|
|
|
|
textarea {
|
|
height: auto;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.controls {
|
|
margin-bottom: em(20);
|
|
|
|
button,
|
|
input[type=submit] {
|
|
@include button($button-primary);
|
|
border-radius: $input-border-radius;
|
|
border: $input-border-width solid $button-primary;
|
|
margin-bottom: 0;
|
|
outline: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
form.square {
|
|
@include span-columns(12);
|
|
margin: em(20) 0;
|
|
|
|
.horizontal {
|
|
@include span-columns(12);
|
|
margin-bottom: em(20);
|
|
|
|
&.small {
|
|
@include span-columns(6);
|
|
}
|
|
|
|
&.medium {
|
|
@include span-columns(9);
|
|
}
|
|
|
|
&.large {
|
|
@include span-columns(12);
|
|
}
|
|
|
|
> .field_with_errors:first-child,
|
|
> label,
|
|
> .label {
|
|
@include span-columns(3);
|
|
padding: em(11) 0;
|
|
line-height: em(16);
|
|
|
|
&.checkbox {
|
|
width: em(40);
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
input[type=text],
|
|
input[type=password],
|
|
input[type=email],
|
|
textarea {
|
|
@include span-columns(9);
|
|
}
|
|
|
|
.inputs {
|
|
@include span-columns(9);
|
|
|
|
input[type=text],
|
|
input[type=password],
|
|
input[type=email] {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
&.wide {
|
|
|
|
> .field_with_errors {
|
|
width: 100%;
|
|
}
|
|
|
|
label {
|
|
width: 100%;
|
|
}
|
|
|
|
textarea,
|
|
.mceLayout {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
.controls {
|
|
@include span-columns(9);
|
|
@include shift(3);
|
|
font-weight: 400;
|
|
|
|
&.inline {
|
|
margin-left: 0;
|
|
width: auto;
|
|
}
|
|
|
|
input[type=submit],
|
|
button {
|
|
font-weight: 400;
|
|
}
|
|
}
|
|
}
|
|
|
|
form.search {
|
|
|
|
.query {
|
|
@include span-columns(7 of 9);
|
|
|
|
input {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.controls {
|
|
@include span-columns(2 of 9);
|
|
@include shift(0);
|
|
@include omega;
|
|
|
|
input {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|