-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
99 lines (84 loc) · 1.49 KB
/
style.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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
footer{
background-color: #111
}
.footercontainer{
width 100%;
padding:70px 30px 20px;
}
.socialIcons{
display: flex;
justify-content: center;
}
.socialIcons a{
text-decoration: none;
padding: 10px;
background-color: white;
margin: 10px;
border-radius: 50%;
}
.socialIcons a i{
font-size: 2em;
color: black;
opacity: 0.9;
}
/*hover effect for social items*/
.socialIcons a:hover{
background-color: #111;
transition: 0.5s;
}
.socialIcons a:hover i{
color: white;
transition: 0.5s;
}
.socialIcons a i:hover{
color:white;
transition: 0.5s;
}
.footerNav{
margin: 30px 0;
}
.footerNav ul{
display: flex;
justify-content: center;
}
.footerNav ul li a{
color: white;
margin: 20px;
text-decoration: none;
font-size: 1.3em;
opacity: 0.7;
transition: 0.5s;
}
.footerNav ul li a:hover{
opacity: 1;
}
.footerbottom{
background-color: #000;
padding: 20px;
text-align:center;
}
.footerbottom p{
color:white;
}
.designer{
opacity: 0.7;
text-transform: uppercase;
letter-spacing: 1px;
font-weight:400 ;
margin: 0 5px;
}
@media(max-width:600px){
.footerNav ul{
flex-direction: column;
}
.footerNav ul li{
width: 100%;
text-allign: center;
margin: 10px;
}
}