-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
190 lines (163 loc) · 3.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
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
/* Footer Styles */
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
box-sizing: border-box;
font-family: "Poppins", sans-serif;
letter-spacing: 0.8px;
transition: 0.2s;
}
.footer {
background: linear-gradient(to right, #D25959, #4b0082);
color: #fff;
padding: 50px 0;
transition: 0.2s;
}
.footer-heading-span{
color: aqua;
margin-left: 30%;
font-size: 30px;
}
.container {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.column {
width: 20%;
padding: 0 15px;
box-sizing: border-box;
}
.column p{
font-size: 18px;
}
.column h3 {
color: #fff;
font-size: 20px;
margin-bottom: 20px;
}
.column ul {
list-style: none;
padding: 0;
margin: 0;
}
.column ul li {
margin-bottom: 10px;
font-size: 17px;
}
.column img {
border-radius: 50%;
}
.social-icons {
margin-top: 20px;
}
.social-icons a {
color: #fff;
margin-right: 10px;
font-size: 30px;
transition: transform 0.2s, color 0.2s; /* Added color transition */
transition: 0.2s;
}
.social-icons a:hover {
transform:translateX(-5px);
color: #0033ff; /* Light blue color on hover */
transition: 0.2s;
}
a {
text-decoration: none;
color: #fff;
transition: color 0.2s; /* Added color transition */
}
a:hover {
color: gold; /* Change font color to gold on hover */
font-weight:600 ;
transition: 0.2s;
1}
/* Additional style for copyright section */
hr {
border-top: 1px solid white;
width: 50%;
margin: 20px auto;
}
.copyright{
text-align: center;
}
/* Heartbeat animation for copyright span */
.copyright span {
color: red; /* Change heart color to red */
animation: pulse 3s linear infinite;
}
@keyframes pulse{
0% {
transform: rotate(-45deg) scale(1);
opacity: 0;
}/*
10% {
transform: rotate(-45deg) scale(1.3);
}
20% {
transform: rotate(-45deg) scale(0.9);
}
30% {
transform: rotate(-45deg) scale(1.2);
}
40% {
transform: rotate(-45deg) scale(0.9);
}*/
50% {
transform: rotate(-45deg) scale(1.3);
opacity: 1;
}/*
60% {
transform: rotate(-45deg) scale(0.95);
}
70% {
transform: rotate(-45deg) scale(1);
} */
100% {
transform: rotate(-45deg) scale(1);
opacity: 1;
}
}
@media only screen and (min-width: 330px) and (max-width: 990px) {
.container {
flex-wrap: wrap;
}
.column {
width: calc(50% - 10px); /* Adjusted width to fit two columns with space */
margin-bottom: 10px;
margin-left: 0px; /* Added margin between columns */
}
.column:nth-child(2) {
margin-top: 102px; /* Add margin-top to the second column */
margin-left: 20px;
}
.column:last-child {
margin-right: 0; /* Remove margin from the last column to prevent extra space */
}
.column:nth-child(5){
width: 100%;
}
.footer-heading-span {
margin-left: 0;
text-align: center;
font-size: 24px; /* Adjusted font size for better visibility */
}
hr{
width: 80%;
}
}
@media only screen and (max-width: 320px) {
.column {
width: 100%;
}
.footer-heading-span {
font-size: 24px;
}
.column:nth-child(5){
width: 100%;
}
hr{
width: 80%;
}
}