bludit/themes/eventually/assets/sass/layout/_signup-form.scss

54 lines
937 B
SCSS
Raw Normal View History

2015-07-10 02:25:53 +02:00
@import '../libs/vars';
@import '../libs/functions';
@import '../libs/mixins';
///
/// Eventually by HTML5 UP
/// html5up.net | @n33co
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
///
/* Signup Form */
#signup-form {
@include vendor('display', 'flex');
position: relative;
input[type="text"],
input[type="password"],
input[type="email"] {
width: 18em;
}
> * {
margin: 0 0 0 1em;
}
> :first-child {
margin: 0 0 0 0;
}
@include breakpoint(xsmall) {
@include vendor('flex-direction', 'column');
input[type="type"],
input[type="password"],
input[type="email"] {
width: 100%;
}
> * {
margin: 1.25em 0 0 0;
}
.message {
bottom: -1.5em;
font-size: 0.9em;
height: 1em;
left: 0;
line-height: inherit;
margin-top: 0;
position: absolute;
}
}
}