Skip to content

Commit fa800e0

Browse files
Update style.css
1 parent 5ea0f22 commit fa800e0

File tree

1 file changed

+55
-1
lines changed

1 file changed

+55
-1
lines changed

css/style.css

Lines changed: 55 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
--bg-color2:#e4cece;
77
--card-bg: #ffffff;
88
--header-bg: #ffffff;
9+
--footer-social-bg:#e4cece;
910
}
1011
.dark-mode {
1112
--primary-color: #7b1fa2;
@@ -15,10 +16,10 @@
1516
--bg-color2:#1e1e1e;
1617
--card-bg: #1e1e1e;
1718
--header-bg: #1e1e1e;
19+
--footer-social-bg:#33353d;
1820
}
1921

2022
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;700&display=swap');
21-
2223
body {
2324
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
2425
margin: 0;
@@ -45,6 +46,59 @@ header {
4546
justify-content: space-between;
4647
align-items: center;
4748
}
49+
footer {
50+
position: relative;
51+
margin: 40px auto 40px;
52+
width: 90%;
53+
max-width: 1200px;
54+
padding: 20px;
55+
background-color: var(--header-bg);
56+
border-radius: 15px;
57+
box-shadow: 0 2px 5px var(--primary-color);
58+
flex-wrap: wrap;
59+
justify-content: space-between;
60+
align-items: center;
61+
}
62+
.site-footer h4 {
63+
color: var(--text-color);
64+
font-size: 16px;
65+
text-transform: uppercase;
66+
margin-top: 5px;
67+
letter-spacing: 2px;
68+
}
69+
.site-footer a {
70+
color: #737373;
71+
}
72+
.site-footer a:hover {
73+
color: var(--primary-color);
74+
text-decoration: none;
75+
}
76+
.footer-col {
77+
width: 30%;
78+
display: inline-block;
79+
vertical-align: top;
80+
padding: 0 15px;
81+
}
82+
.social-links a {
83+
display: inline-block;
84+
width: 40px;
85+
height: 40px;
86+
background-color: var(--footer-social-bg);
87+
margin: 0 10px 10px 0;
88+
text-align: center;
89+
line-height: 40px;
90+
border-radius: 50%;
91+
color: #ffffff;
92+
transition: all 0.5s ease;
93+
}
94+
.social-links a:hover {
95+
color: var(--text-color);
96+
background: linear-gradient(to right,var(--primary-color),var(--secondary-color));
97+
}
98+
.copyright {
99+
text-align: center;
100+
padding-top:5px;
101+
}
48102

49103
.controls {
50104
display: flex;

0 commit comments

Comments
 (0)