Skip to content

Commit b99eb5d

Browse files
authored
Merge pull request #141 from CSFelix/CSFelix-patch-1
📦 Updated
2 parents 1ee70a9 + 34e4fc2 commit b99eb5d

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

assets/css/styles/partners.css

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
/*
2+
*******************
3+
** Sub Container **
4+
*******************
5+
*/
6+
.partnersSubContainer {
7+
display: flex;
8+
flex-direction: row;
9+
flex-wrap: wrap;
10+
align-items: center;
11+
justify-content: center;
12+
gap: 1em;
13+
}
14+
15+
16+
17+
18+
/*
19+
***********
20+
** Icons **
21+
***********
22+
*/
23+
.partnerIcon {
24+
cursor: pointer;
25+
filter: grayscale(0.80);
26+
transition: all 0.3s ease;
27+
}
28+
29+
.partnerIcon:hover {
30+
filter: grayscale(0.00);
31+
transform: translateY(-5px);
32+
}

assets/css/styles/sections.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
********************
55
*/
66
.container { width: 100vw; color: var(--color-1); }
7-
#skillsContainer, #reachMeContainer { background-color: var(--background-color-2); }
7+
#skillsContainer, #partnersContainer { background-color: var(--background-color-2); }
88
.containerTitle { text-align: center; font-size: 30px; }
99
.containerTitleText { text-decoration: underline; text-decoration-style: dashed; }
1010

@@ -28,6 +28,7 @@
2828
color: var(--color-1);
2929
border-bottom-style: dashed;
3030
border-bottom-width: 3.1px;
31+
top: 200px;
3132
}
3233

3334
#aboutMeContainer .containerContent span a:hover {

0 commit comments

Comments
 (0)