Skip to content

Commit 5572e3c

Browse files
authored
📦 Updates
1 parent dc90dfb commit 5572e3c

File tree

2 files changed

+79
-0
lines changed

2 files changed

+79
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
footer {
2+
display: flex;
3+
align-items: center;
4+
justify-content: center;
5+
6+
font-size: 12px;
7+
padding: 5px;
8+
9+
background-color: #f8f8ff;
10+
}
11+
12+
footer img { width: 18px; height: auto; }

‎assets/css/styles/sections.css‎

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
align-items: center;
1414
justify-content: center;
1515
flex-direction: column;
16+
text-align: center;
1617
gap: 20px;
1718
}
1819

@@ -27,6 +28,7 @@
2728
display: flex;
2829
align-items: center;
2930
justify-content: center;
31+
margin-bottom: 15px;
3032
}
3133

3234
.skillsSubContainer .skillsInfoContainer a { color: #707070; cursor: pointer; }
@@ -57,6 +59,71 @@
5759
************************
5860
*/
5961

62+
#projectsSubContainer {
63+
display: flex;
64+
align-items: center;
65+
justify-content: center;
66+
flex-direction: row;
67+
flex-wrap: wrap;
68+
gap: 15px;
69+
}
70+
71+
#projectsSubContainer .projectBtn {
72+
display: flex;
73+
align-items: center;
74+
justify-content: center;
75+
flex-direction: column;
76+
gap: 15px;
77+
78+
cursor: pointer;
79+
padding: 20px;
80+
width: 200px;
81+
82+
background-color: #ededed;
83+
border-radius: 5px;
84+
border: 2px solid #707070;
85+
86+
transition: all 0.3s ease;
87+
}
88+
89+
#projectsSubContainer .projectBtn:hover {
90+
-webkit-filter: brightness(87%);
91+
transform: translateY(-5px);
92+
}
93+
94+
#projectsSubContainer .projectBtn img {
95+
width: 60px; height: auto;
96+
}
97+
98+
/*
99+
***********************
100+
** ReachMe Container **
101+
***********************
102+
*/
103+
.reachMeSubContainer {
104+
display: flex;
105+
align-items: center;
106+
justify-content: center;
107+
gap: 15px;
108+
}
109+
110+
.reachMeSubContainer img {
111+
width: 50px;
112+
height: auto;
113+
}
114+
115+
.reachMeSubContainer a {
116+
color: #707070;
117+
font-weight: bold;
118+
transition: all 0.3s ease;
119+
}
120+
121+
.reachMeSubContainer a:hover {
122+
border-bottom-style: dashed;
123+
border-bottom-width: 2.5px;
124+
-webkit-filter: brightness(87%);
125+
}
126+
60127
/*
61128
****************
62129
** Animations **

0 commit comments

Comments
 (0)