Skip to content

Commit 3e796c5

Browse files
authored
Merge pull request #103 from CSFelix/CSFelix-patch-1
📦 Updated
2 parents 9912138 + c544e0d commit 3e796c5

File tree

3 files changed

+41
-1
lines changed

3 files changed

+41
-1
lines changed

assets/css/styles/global.css

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,13 @@
2020
text-decoration: none;
2121
scroll-behavior: smooth;
2222
vertical-align: baseline;
23+
24+
user-select: none;
25+
user-drag: none;
26+
-webkit-user-drag: none;
27+
-khtml-user-drag: none;
28+
-moz-user-drag: none;
29+
-o-user-drag: none;
2330
}
2431

2532
/*
@@ -34,7 +41,7 @@
3441
--background-color-4: #c6c6c6; /* mobile menu options on hover */
3542

3643
--color-1: #f6f6ff;
37-
--color-2: ghostwhite;
44+
--color-2: #f8f8ff;
3845
--color-3: #c3c3c3;
3946

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

assets/css/styles/skills_cards.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
padding: 0 36px;
99
perspective: 2500px;
1010
margin: 0 50px;
11+
cursor: pointer;
1112
}
1213

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

0 commit comments

Comments
 (0)