blob: 561c0599ec8a657f3cae272500ffd18153007524 (
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
|
//Flexbox mixins rely on https://github.com/timhettler/compass-flexbox
.mailing-list {
text-align: left;
@extend %clearfix;
.form--flex-container {
@include display-flex;
}
}
.form--label {
display: block;
font-weight: 600;
letter-spacing: 1px;
font-family: "Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
@include fontsize(12);
margin-bottom: 6px;
}
.form--input {
@include flex-grow(1);
padding: .25em;
border: #c5c5c5 1px solid;
border-radius: .125em;
color: darken($body_font_light, 20);
}
.btn {
display: inline-block;
margin-left: 5px;
border-radius: .25em;
border: none;
padding: 8px 12px 7px;
max-width: 8.75em;
background: $orange;
color: white;
font: bold .75em Verdana,sans-serif;
text-transform: uppercase;
}
|