forked from shrey141102/Javascript-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Footer.css
125 lines (112 loc) · 1.82 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
.footer {
width: 100%;
height: auto;
background-image: url(footer-background.jpg);
background-size: cover;
background-position: center;
color: rgb(255, 255, 255);
display: flex;
align-items: center;
justify-content: space-between;
flex-direction: column;
flex-wrap: wrap;
margin-top: 60px;
padding: 0 50px;
padding-top: 20px;
}
.footer .col h1 {
font-family: cursive;
font-size: 20px;
text-align: center;
}
.a {
text-decoration: none;
color: white;
font-size: 25px;
}
.a:hover {
cursor: pointer;
padding: 5px 10px;
border-radius: 10px;
background-color: #e0e0e097;
transition: 0.5s ease;
color: black;
}
.footer__links {
width: 90%;
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 20px;
}
.font {
font-size: 35px;
margin: 0 10px;
transform: translateY(4px);
}
.slash {
font-size: 50px;
font-weight: 100;
color: grey;
margin: 0 50px;
}
.footer__copy {
width: 70%;
display: flex;
align-items: center;
justify-content: space-between;
margin: 15px 0;
}
.footer__copy a {
text-decoration: none;
color: #767676;
}
.footer__copy a:hover {
cursor: pointer;
color: white;
padding: 5px 10px;
border-radius: 10px;
background-color: #525252;
transition: 0.5s ease;
}
/* Responsive Styles */
@media screen and (max-width: 768px) {
.footer {
padding: 0 20px;
}
.footer .col h1 {
font-size: 25px;
}
.footer__links {
flex-direction: column;
justify-content: center;
}
.slash {
margin: 0;
}
.footer__copy {
width: 90%;
flex-direction: column;
justify-content: center;
}
.footer__copy p a {
font-size: 20px;
}
a {
font-size: 30px;
}
}
@media screen and (min-width: 768px) {
.footer__copy {
width: 95%;
}
}
@media screen and (max-width: 480px) {
.footer {
padding: 0 10px;
}
.footer__copy {
flex-direction: column;
align-items: center;
}
}