-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfooter css
149 lines (139 loc) · 2.26 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
141
142
143
144
145
146
147
148
149
body{
margin: 0;
font-family: Arial, Helvetica, sans-serif;
background: #333;
}
h1{
color: #fff;
text-align: center;
margin: 3em 0;
font-size: 3em;
}
.footer * {
box-sizing: border-box;
padding: 0;
margin: 0;
}
footer ul{
list-style: none;
}
.footer {
color: #fff;
background: #121315;
}
.footer p{
color: #ccc;
max-width: 25em;
font-size: 0.9em;
line-height: 23px;
}
.footer ul{
list-style: none;
}
.footer a{
color: #fff;
text-decoration: none;
}
.footer h4{
margin-bottom: 1em;
text-transform: uppercase;
}
.footer .continer{
max-width: 1200px;
margin: 0 auto;
padding: 2em;
}
.footer .continer{
display: flex;
justify-content: space-between;
gap: 2em;
}
.brand{
display: block;
font-size: 1.8em;
font-weight: 600;
margin-bottom: 1em;
}
.media-icons li,
.service-icon li {
display: inline-block;
margin: 0.5em 0.5em 0.5em 0;
}
.media-icons a{
font-size: 1.1em;
width: 2em;
height: 2em;
border: 1px #fff solid;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
transition: 0.3s;
}
.media-icons a:hover {
background: #fff;
color: #111;
}
.service-icon a{
font-size: 1.6em;
}
.service-icon a:hover{
color: #dbdbdb;
}
.footer-bottom{
border-top: 1px #dbdbdb solid ;
}
.footer .menu{
margin-bottom: 3em;
}
.footer .menu li{
display: inline-block;
margin: 0 0.7em 0.7em 0;
text-align: center;
}
.footer .menu a{
transform: 0.3s;
font-weight: 600;
}
.footer .menu a:hover{
color: #ff2b00;
}
.input-wrap {
margin: 1em 0;
display: flex;
}
.input-wrap input {
padding: 0;
border: none;
background: #20232a;
color: #ccc;
}
.input-wrap input:focus {
outline: none;
}
.input-wrap input:focus{
outline: none;
}
.input-wrap button{
padding: 0.8em;
background: #ff2b00;
border: none;
color: #fff;
}
.input-wrap button:hover{
background: #fff;
color: #111;
}
.last{
height: 60px;
background-color: #6c0606;
display: flex;
align-items: center;
align-content: center;
justify-content: center;
}
@media screen and (max-width: 900px){
.footer .continer{
flex-direction: column;
}
}