-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.css
76 lines (73 loc) · 1.19 KB
/
footer.css
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
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
#footer_section{
margin-top: 195px;
}
#footer{
display: grid;
grid-template-columns: repeat(11,1fr);
gap: 15px;
overflow:visible;
}
#footer ul li{
list-style: none;
}
#footer ul li a{
text-decoration: none;
color: black;
line-height: 30px;
}
.footer_heading{
color: coral;
font-weight: 600;
padding-bottom: 10px;
}
#footer_icon{
margin-top: 35px;
display: flex;
gap: 10px;
}
#footer_icon img{
/* margin-top: 25px; */
width: 22px;
height: 25px;
}
#footer_icon span{
border-left: 2px;
height: 10px;
}
#bottom_footer{
display: flex;
justify-content: space-between;
width: 90%;
margin: auto;
padding-top: 50px;
}
#bottom_footer #suscribe input{
line-height: 30px;
width: 350px;
}
#suscribe>div{
background-color: black;
display: flex;
}
#suscribe>p{
padding-bottom: 15px;
}
#bottom_footer #suscribe button{
padding: 9px 18px;
border: none;
background-color: black;
color: white;
}
#appStore{
display: flex;
}
#appStore img{
width: 100px;
display: inline-block;
margin-left: 95px;
}