summaryrefslogtreecommitdiff
path: root/bak/design/sass/_forms.scss
blob: 93a283d551dce7a14092649a1032c566f9196194 (plain)
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
.generic-form {
    margin: 2rem 0;
    @extend %clearfix;
}
.generic-form fieldset {
    padding: 0;
    border: none;
    width: 100%;
    position: relative;
}
.generic-form input[type=email] {
    width: 210px;
    @include fontsize(18);
    background-color: #fff;
    border: 2px solid darken(#efefef, 10);
    border-radius: 5px;
    height: 2.2rem;
    padding: 4px 4px 4px 8px;
    margin-right: .5rem;
    @include breakpoint(alpha){
        width: 96%;
    }
}
.generic-form label { 
    display: block;
    visibility: hidden;
    width: 0;
    height: 0;
}
.btn-hollow {
    @include fontsize(16);
    display: inline-block;
    padding: 10px 15px;
    margin-bottom: 0;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    color: #ddd;
    border: 0;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.2s ease;
    background: $orange;
    &:hover {
        color: white;
    }
}