-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFooter.css
140 lines (119 loc) · 1.93 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
footer
{
width: 100%;
bottom: 0;
background: linear-gradient(to right, #00093c, #2d0b00);
color: #fff;
padding: 100px 0 30px;
border-top-left-radius: 125px;
font-size: 13px;
line-height: 20px;
}
.row
{
width: 85%;
margin: auto;
display: flex;
flex-wrap: wrap;
align-items: flex-start;
justify-content: space-between;
}
.col
{
flex-basis: 20%;
padding: 25px;
}
.col:nth-child(2) , col:nth-child(3)
{
flex-basis: 20%;
}
.row h2
{
margin-bottom: 30px;
font-size: 25px;
font-weight: 600;
}
.col h3
{
width: fit-content;
margin-bottom: 40px;
position: relative;
}
.email-id
{
width: fit-content;
border-bottom: 1px solid #ccc;
margin: 20px 0;
}
.row ul li
{
list-style: none;
margin-bottom: 12px;
font-size: 15px;
}
.row ul li a
{
text-decoration: none;
color: #fff;
}
.social-icons .fab
{
width: 40px;
height: 40px;
border-radius: 50%;
text-align: center;
line-height: 40px;
font-size: 20px;
color: #000;
background: #fff;
margin-right: 15px;
cursor: pointer;
}
.social-icons .fab:hover
{
background: rgb(143, 69, 20);
transition: 0.3s;
color: #fff;
}
.row hr
{
width: 90%;
border: 0;
border-bottom: 1px solid #ccc;
margin: 20px auto;
}
.copyright
{
text-align: center;
}
.underline
{
width: 100%;
height: 5px;
background: #767676;
border-radius: 3px;
position: absolute;
top: 25px;
left: 0;
}
.col ul li a:hover
{
color: rgb(69, 110, 187);
transition: 0.2s;
}
/* Responsive section */
@media (max-width: 700px)
{
footer
{
bottom: unset;
}
.col
{
flex-basis: 100%;
}
.col:nth-child(2) , col:nth-child(3)
{
flex-basis: 100%;
}
}