_signup-form.scss
808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
///
/// Eventually by HTML5 UP
/// html5up.net | @ajlkn
/// 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;
}
}
}