forked from PayalPadmalyaPrusty/YATI_Hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
146 lines (139 loc) · 3.52 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
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
140
141
142
143
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,300;1,200&display=swap');
html, body{
margin: 0;
font-family: 'Nunito', sans-serif;
padding: 0;
background: #000;
}
footer{
width: 100%;
min-height: 300px;
max-height: auto;
background-image: linear-gradient(to right top, #474e5d, #474e5d,#474e5d,#474e5d,#474e5d);
clear: both;
}
footer .footer-wrap{
width: 80%;
margin: 0 auto;
padding-left: 9%;
color: white;
}
.widgetFooter{
width: calc(85%/3);
height: auto;
float: left;
padding: 2.5%;
text-align: left;
}
h4.uppercase{
text-transform: uppercase;
font-family: 'Playfair Display', serif;
font-size: 20px;
}
ul#footerUsefulLink, ul#footerMediaLinks{
list-style-type: none;
margin: 0;
padding: 0;
line-height: 40px;
text-transform: capitalize;
}
ul#footerUsefulLink li, ul#footerMediaLinks li{
cursor: pointer;
/* transition: border-bottom 3s ease-in; */
}
ul#footerUsefulLink li:hover .usefulLinksIcons, ul#footerUsefulLink li:hover a{
color: #00CED1;
/* border-bottom: 1px solid red; */
}
.insta{
color: white;
text-decoration: none;
}
.git{
color: white;
text-decoration: none;
}
.twit{
color: white;
text-decoration: none;
}
.fb{
color: white;
text-decoration: none;
}
#email{
text-decoration: none;
color: white;
}
#cont{
text-decoration:none;
color:white;
}
ul#footerMediaLinks li:hover span.fb, ul#footerMediaLinks li:hover a.fb { color: #161cda; }
ul#footerMediaLinks li:hover span.twit, ul#footerMediaLinks li:hover a.twit { color: #1DA1F2; }
ul#footerMediaLinks li:hover span.insta, ul#footerMediaLinks li:hover a.insta { color: #ffc838; }
ul#footerMediaLinks li:hover span.git, ul#footerMediaLinks li:hover a.git { color: #f1502f; }
div#footerLogo img{
width: 50%;
margin: 25% 0;
}
div.footerCopy{
clear: both;
color: white;
text-align: center;
padding-bottom: 5px;
border-top: 1px solid #ccc;
background: #262626;
}
@media (max-width:800px){
footer .footer-wrap{
width: 100%;
padding: 0;
}
.widgetFooter:not(:nth-of-type(2)){
width: calc(90%/2);
text-align: center;
font-size: 0.9em;
}
.widgetFooter:nth-of-type(2){
display: none;
}
div.footerCopy{
font-size: 0.8em;
}
}
@media (max-width:600px){
.widgetFooter:not(:nth-of-type(2)){
text-align: left;
}
}
@media (max-width:500px){
footer{
min-height: auto;
}
.widgetFooter:not(:nth-of-type(2)){
width: 100%;
padding: 0;
text-align: center;
}
ul#footerUsefulLink, ul#footerMediaLinks{
display: flex;
}
ul#footerUsefulLink li, ul#footerMediaLinks li{
float: left;
flex: 1;
text-align: center;
font-size: 1.5em;
}
ul#footerUsefulLink li a, ul#footerMediaLinks li a{
display: none;
}
ul#footerUsefulLink li:hover, ul#footerUsefulLink li:hover .usefulLinksIcons, ul#footerUsefulLink li:hover a{
color: white;
background-color: #00CED1;
}
ul#footerMediaLinks li.media1:hover, ul#footerMediaLinks li:hover span.fb, ul#footerMediaLinks li:hover a.fb { background-color: #3b5998; color: white; }
ul#footerMediaLinks li.media2:hover, ul#footerMediaLinks li:hover span.twit, ul#footerMediaLinks li:hover a.twit { background-color: #1DA1F2; color: white; }
ul#footerMediaLinks li.media3:hover, ul#footerMediaLinks li:hover span.insta, ul#footerMediaLinks li:hover a.insta { background-color: #ffc838; color: white; }
ul#footerMediaLinks li.media4:hover, ul#footerMediaLinks li:hover span.git, ul#footerMediaLinks li:hover a.git { background-color: #f1502f; color: white; }
}