-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathVishwafooter.css
109 lines (98 loc) · 2.14 KB
/
Vishwafooter.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
@import url(https://fonts.googleapis.com/css2?family=Poppins&display=swap);
.v-footer{
bottom: 0;
position: relative;
padding: 20px 0px 0px 0px;
width: 100%;
margin-top: 3%;
}
.footerHead{
display: flex;
justify-content: center;
align-items: center;
color: #00bdff;
/* rgba(75, 255, 4, 0.993) */
font-size: 35px;
font-weight: 500;
background-color: #333;
border-radius: 10px;
padding: 1px;
width: 20%;
margin: auto;
font-family: 'Poppins', sans-serif !important;
text-align: center;
}
.footerSubHead{
margin: auto;
display: flex;
justify-content: center;
width: 50%;
padding: 10px;
font-family: 'Poppins';
color: snow;
}
.flex-center {
/* background: #000; */
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 40%;
margin: auto;
padding: 20px;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content:space-evenly;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.icon-3d {
padding: 10px;
-webkit-animation: icon3d 200ms 10;
animation: icon3d 200ms 10;
color: #fff;
}
.icon-3d:hover {
-webkit-animation: icon3d 200ms infinite;
animation: icon3d 200ms infinite;
}
@keyframes icon3d {
0% {
text-shadow: 5px 4px #f44336, -5px -6px #2196f3;
}
25% {
text-shadow: -5px -6px #f44336, 5px 4px #2196f3;
}
50% {
text-shadow: 5px -4px #f44336, -8px 4px #2196f3;
}
75% {
text-shadow: -8px -4px #f44336, -5px -4px #2196f3;
}
100% {
text-shadow: -5px 0 #f44336, 5px -4px #2196f3;
}
}
@media (max-width: 600px){
.footerHead {
color: #00bdff;
font-size: 35px;
margin-top: 15px !important;
font-weight: 500;
background-color: #333;
border-radius: 20px;
padding: 2px;
width: 65vw;
margin: auto;
font-family: 'Poppins', sans-serif !important;
text-align: center;
}
.footerSubHead{
width: 80%;
flex-direction: column;
text-align: center;
}
}