Skip to content

Commit c7f238f

Browse files
authored
📦 Updated
- Updated Skills Section
1 parent 1fcd91b commit c7f238f

File tree

2 files changed

+59
-2
lines changed

2 files changed

+59
-2
lines changed

‎assets/css/styles/global.css‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
--color-1: #f6f6ff;
4444
--color-2: #f8f8ff;
4545
--color-3: #c3c3c3;
46+
--color-4: #7f4d96;
4647

4748
--text-shadow-color: #7159c1; /* header */
4849

‎assets/css/styles/sections.css‎

Lines changed: 58 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,55 @@
8080
.skillsSubContainer .skillsStarsContainer img { width: 50px; height: auto; }
8181
.skillsSubContainer .skillsStarsContainer .inactive { -webkit-filter: grayscale(100%); filter: grayscale(100%); }
8282

83-
#skillsCardsContainer
84-
, #projectsSubContainer {
83+
#skillsCardsContainer {
84+
display: flex;
85+
flex-direction: column;
86+
justify-content: center;
87+
align-items: center;
88+
gap: 5em;
89+
}
90+
91+
.skillsCardsSubContainer {
92+
display: flex;
93+
flex-direction: column;
94+
justify-content: center;
95+
align-items: center;
96+
gap: 1em;
97+
}
98+
99+
.skillsContentsContainer {
100+
display: flex;
101+
flex-direction: column;
102+
justify-content: center;
103+
align-items: start;
104+
gap: 1em;
105+
}
106+
107+
.skillsContentsSubContainer {
108+
display: flex;
109+
flex-direction: row;
110+
flex-wrap: wrap;
111+
justify-content: flex-start;
112+
align-items: center;
113+
gap: 1em;
114+
}
115+
116+
.skillsProgress::-moz-progress-bar {
117+
background: var(--color-4);
118+
color: var(--color-4);
119+
}
120+
121+
.skillsProgress::-webkit-progress-value {
122+
background: var(--color-4);
123+
color: var(--color-4);
124+
}
125+
126+
.skillsProgress {
127+
background: var(--color-4);
128+
color: var(--color-4);
129+
}
130+
131+
#projectsSubContainer {
85132
display: flex;
86133
align-items: center;
87134
justify-content: space-around;
@@ -187,4 +234,13 @@
187234
animation-name: scrollSign;
188235
animation-duration: 1.5s;
189236
animation-iteration-count: infinite;
237+
}
238+
239+
/*
240+
************
241+
** Mobile **
242+
************
243+
*/
244+
@media only screen and (max-width: 850px) {
245+
.skillsContentsSubContainer { justify-content: center; }
190246
}

0 commit comments

Comments
 (0)