Skip to content

Commit 37ac730

Browse files
authored
📦 Updates
1 parent 6e31275 commit 37ac730

File tree

1 file changed

+78
-12
lines changed

1 file changed

+78
-12
lines changed
Lines changed: 78 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,87 @@
1-
.container {
2-
width: 100vw;
3-
margin-bottom: 5px;
4-
background-color: #efefef;
5-
color: #707070;
1+
/*
2+
********************
3+
** All Containers **
4+
********************
5+
*/
6+
.container { width: 100vw; padding: 20px; color: #707070; }
7+
#skillsContainer, #reachMeContainer { background-color: #ededed; }
8+
.containerTitle { text-align: center; font-size: 30px; }
9+
.containerTitleText { text-decoration: underline; text-decoration-style: dashed; }
10+
11+
.containerContent {
12+
display: flex;
13+
align-items: center;
14+
justify-content: center;
15+
flex-direction: column;
16+
gap: 20px;
617
}
718

8-
.containerTitle {
9-
text-align: center;
10-
font-size: 30px;
19+
.sticker { width: 200px; height: auto; }
20+
21+
/*
22+
**********************
23+
** Skills Container **
24+
**********************
25+
*/
26+
.skillsSubContainer .skillsInfoContainer {
27+
display: flex;
28+
align-items: center;
29+
justify-content: center;
1130
}
1231

13-
.containerTitle .containerTitleText {
32+
.skillsSubContainer .skillsInfoContainer a { color: #707070; cursor: pointer; }
33+
34+
.skillsSubContainer .skillsInfoContainer a span {
35+
font-size: 25px;
1436
text-decoration: underline;
1537
text-decoration-style: dashed;
38+
transition: all 0.3s ease;
39+
}
40+
.skillsSubContainer .skillsInfoContainer a span:hover { text-decoration-style: solid; }
41+
42+
.skillsSubContainer .skillsInfoContainer .skillsLogo { width: 60px; height: auto; }
43+
44+
.skillsSubContainer .skillsStarsContainer {
45+
display: flex;
46+
align-items: center;
47+
justify-content: center;
48+
gap: 15px;
49+
}
50+
51+
.skillsSubContainer .skillsStarsContainer img { width: 50px; height: auto; }
52+
.skillsSubContainer .skillsStarsContainer .inactive { -webkit-filter: grayscale(100%); filter: grayscale(100%); }
53+
54+
/*
55+
************************
56+
** Projects Container **
57+
************************
58+
*/
59+
60+
/*
61+
****************
62+
** Animations **
63+
****************
64+
*/
65+
66+
@keyframes scrollSign {
67+
0% {
68+
opacity: 100%;
69+
transform: translateY(0px);
70+
}
71+
72+
50% {
73+
opacity: 65%;
74+
transform: translateY(5px);
75+
}
76+
77+
100% {
78+
opacity: 100%;
79+
transform: translateY(0px);
80+
}
1681
}
1782

18-
.sticker {
19-
width: 200px;
20-
height: auto;
83+
.scrollBellow {
84+
animation-name: scrollSign;
85+
animation-duration: 1.5s;
86+
animation-iteration-count: infinite;
2187
}

0 commit comments

Comments
 (0)