-
Notifications
You must be signed in to change notification settings - Fork 0
/
_footer.scss
83 lines (79 loc) · 1.84 KB
/
_footer.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*=============== FOOTER ===============*/
.footer{
&__container{
row-gap: 3rem;
}
&__logo{
display: inline-flex;
align-items: center;
column-gap: .5rem;
color: var(--title-color);
text-transform: uppercase;
font-weight: 700;
letter-spacing: -1px;
margin-bottom: var(--mb-2-5);
transition: .3s;
&:hover{
color: var(--first-color);
}
&-icon{
font-size: 1.15rem;
color: var(--first-color);
}
}
&__title{
font-size: var(--h3-font-size);
margin-bottom: var(--mb-1-5);
}
&__subscribe{
background-color: var(--first-color-lighten);
padding: .75rem;
display: flex;
justify-content: space-between;
border-radius: .5rem;
}
&__input{
width: 70%;
padding: 0 .5rem;
background: none;
color: var(--text-color);
border: none;
outline: none;
}
&__button{
padding: 1rem;
}
&__data{
display: grid;
row-gap: .75rem;
}
&__information{
font-size: var(--small-font-size);
}
&__social{
display: inline-flex;
column-gap: .75rem;
&-link{
font-size: 1rem;
color: var(--text-color);
transition: .3s;
&:hover {
transform: translateY(-.25rem);
}
}
}
&__cards{
display: inline-flex;
align-items: center;
column-gap: .5rem;
}
&__card{
width: 35px;
}
&__copy{
text-align: center;
font-size: var(--smaller-font-size);
color: var(--text-color-light);
margin: 5rem 0 1rem;
}
}