-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfoot.css
More file actions
139 lines (118 loc) · 1.78 KB
/
foot.css
File metadata and controls
139 lines (118 loc) · 1.78 KB
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
* {
margin: 0;
padding: 0;
font-family: sans-serif;
}
body {
background: #FFFFFF;
}
.footer {
width: 100%;
background: #00121b;
display: block;
}
.inner-footer {
width: 95%;
margin: auto;
padding: 30px 10px;
display: flex;
flex-wrap: wrap;
box-sizing: border-box;
justify-content: center;
}
.footer-items {
width: 25%;
padding: 10px 20px;
box-sizing: border-box;
}
.footer-items h1 {
padding: 10px 0;
font-size: 25px;
color: #fff;
text-transform: uppercase;
}
.footer-items p {
color: grey;
font-size: 16px;
text-align: justify;
line-height: 25px;
}
.footer-items h2 {
margin: 10px 0;
font-size: 16px;
color: grey;
font-weight: lighter;
text-transform: uppercase;
}
.border {
height: 2px;
width: 40px;
background: #ff9800;
}
.footer-items ul {
list-style: none;
color: #fff;
font-size: 15px;
letter-spacing: 0.5px
}
.footer-items ul a {
text-decoration: none;
outline: none;
color: #fff;
transition: 0.3s;
}
.footer-items ul a:hover {
color: #ff9800;
}
.footer-items ul li {
margin: 10px 0;
height: 25px;
}
.footer-items ul li i {
margin-right: 20px;
}
.social-media {
width: 100%;
color: #fff;
text-align: center;
}
.social-media a {
text-decoration: none;
}
.social-media i {
height: 15px;
width: 15px;
margin: 20px 5px;
padding: 10px;
color: #fff;
border-radius: 50%;
border: 1px solid grey;
transition: 0.3s
}
.social-media i:hover {
background: grey;
}
.footer-bottom {
padding: 10px;
background: #3d545f;
color: #fff;
font-size: 12px;
text-align: center;
text-decoration: none;
}
.footer-bottom a {
text-decoration: none;
color: #fff;
text-align: center;
font-size: 12px;
}
@media screen and (max-width: 1085px) {
.footer-items {
width: 50%;
}
}
@media screen and (max-width: 600px) {
.footer-items {
width: 100%;
}
}