-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFooter.module.scss
62 lines (51 loc) · 981 Bytes
/
Footer.module.scss
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
51
52
53
54
55
56
57
58
59
60
61
62
@use 'variables.module' as *;
#footer {
display: flex;
flex-direction: column;
width: calc(100% - 2 * #{$nav-horiz-padding});
padding: 80px $nav-horiz-padding;
background-color: map-get($colors, 'black');
color: map-get($colors, 'white');
}
.contact {
display: flex;
flex-direction: column;
}
.group {
display: flex;
flex-direction: column;
width: 100%;
margin-top: 10px;
label {
color: map-get($colors, 'white');
}
textarea {
min-height: 120px;
}
input {
min-height: 20px;
}
textarea,
input {
line-height: 1.6em;
margin-top: 2px;
padding: 5px 10px;
&:active,
&:focus {
outline: none;
}
}
}
#submit {
background-color: transparent;
color: map-get($colors, 'white');
letter-spacing: 0.1em;
margin: 24px 0 0 auto;
// SIZING
width: 120px;
padding: 4px $button-horiz-padding;
min-height: 32px;
// BORDER
border: 2px solid map-get($colors, 'white');
cursor: pointer;
}