-
Notifications
You must be signed in to change notification settings - Fork 0
/
footerStylesheet.css
57 lines (57 loc) · 1001 Bytes
/
footerStylesheet.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
/* header styling */
footer{
margin-top: 10px;
max-width: 100%;
background-color: #000000ee;
color: #e9dfcf;
display: flex;
justify-content: space-evenly;
font-family: 'Kaushan Script', cursive;
}
/* text info for footer */
.info{
width: 45%;
display: flex;
justify-content: space-between;
align-items: center;
}
p {
font-size: 1rem;
margin: 0;
padding: 0;
}
.companyName, .year{
font-size: .5rem;
}
/* social media */
.socialMedia{
width: 45%;
display: flex;
justify-content: space-evenly;
align-items: center;
}
.socialMedia a{
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.instagrami{
content: url("img/footer/2.png");
}
.instagrami:hover{
content: url("img/footer/2hover.png");
}
.facebooki{
content: url("img/footer/3.png");
}
.facebooki:hover{
content: url("img/footer/3hover.png");
}
.youtubei{
content: url("img/footer/4.png");
}
.youtubei:hover{
content: url("img/footer/4hover.png");
}