Skip to content

Commit

Permalink
Merge pull request #109 from CSFelix/CSFelix-patch-1
Browse files Browse the repository at this point in the history
📦 Updated
  • Loading branch information
CSFelix authored Jan 13, 2024
2 parents 1fcd91b + c7f238f commit f4d0e44
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 2 deletions.
1 change: 1 addition & 0 deletions assets/css/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
--color-1: #f6f6ff;
--color-2: #f8f8ff;
--color-3: #c3c3c3;
--color-4: #7f4d96;

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

Expand Down
60 changes: 58 additions & 2 deletions assets/css/styles/sections.css
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,55 @@
.skillsSubContainer .skillsStarsContainer img { width: 50px; height: auto; }
.skillsSubContainer .skillsStarsContainer .inactive { -webkit-filter: grayscale(100%); filter: grayscale(100%); }

#skillsCardsContainer
, #projectsSubContainer {
#skillsCardsContainer {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 5em;
}

.skillsCardsSubContainer {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 1em;
}

.skillsContentsContainer {
display: flex;
flex-direction: column;
justify-content: center;
align-items: start;
gap: 1em;
}

.skillsContentsSubContainer {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
align-items: center;
gap: 1em;
}

.skillsProgress::-moz-progress-bar {
background: var(--color-4);
color: var(--color-4);
}

.skillsProgress::-webkit-progress-value {
background: var(--color-4);
color: var(--color-4);
}

.skillsProgress {
background: var(--color-4);
color: var(--color-4);
}

#projectsSubContainer {
display: flex;
align-items: center;
justify-content: space-around;
Expand Down Expand Up @@ -187,4 +234,13 @@
animation-name: scrollSign;
animation-duration: 1.5s;
animation-iteration-count: infinite;
}

/*
************
** Mobile **
************
*/
@media only screen and (max-width: 850px) {
.skillsContentsSubContainer { justify-content: center; }
}

0 comments on commit f4d0e44

Please sign in to comment.