forked from shrey141102/Javascript-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Footer.css
126 lines (124 loc) · 2.41 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
.footer {
width: 100%;
height: 230px;
background-color: #f9c390;
color: black;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
margin-top: 60px;
}
.a{
background-color: rgb(29, 29, 29);
color: #ffffff;
padding: 10px;
margin-top: 20px;
border-radius: 5px;
text-decoration: none;
text-align: center;
}
.footer .col {
width: 190px;
height: auto;
float: left;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
padding: 0px 20px 20px 20px;
}
.footer .col h1 {
margin: 10px;
padding: 0;
font-family: inherit;
font-size: 12px;
line-height: 17px;
padding: 20px 0px 5px 0px;
color: rgba(255,255,255,0.2);
color: black;
font-weight: normal;
text-transform: uppercase;
letter-spacing: 0.250em;
}
.footer .col ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.footer .col ul li {
color: #999999;
font-size: 14px;
font-family: inherit;
font-weight: bold;
padding: 5px 0px 5px 0px;
cursor: pointer;
transition: .2s;
-webkit-transition: .2s;
-moz-transition: .2s;
}
.social ul li {
display: inline-block;
padding-right: 5px !important;
}
.footer .col ul li:hover {
color: #ffffff;
transition: .1s;
-webkit-transition: .1s;
-moz-transition: .1s;
}
.clearfix {
clear: both;
}
@media only screen and (min-width: 1280px) {
.contain {
width: 1200px;
margin: 0 auto;
}
}
@media only screen and (max-width: 1139px) {
.contain .social {
width: 1000px;
display: block;
}
.social h1 {
margin: 0px;
}
}
@media only screen and (max-width: 950px) {
.footer .col {
width: 33%;
}
.footer .col h1 {
font-size: 14px;
}
.footer .col ul li {
font-size: 13px;
}
}
@media only screen and (max-width: 500px) {
.footer .col {
width: 100%;
margin: 0px;
}
.footerTitle{
font-size: 30px;
}
.social{
margin: 0px;
padding: 0px;
}
.footer .col h1 {
font-size: 10px;
}
.footer .col ul li {
font-size: 10px;
}
.footer{
height: fit-content;
}
}
@media only screen and (max-width: 340px) {
.footer .col {
width: 100%;
}
}