Skip to content

Commit eaf0553

Browse files
Code Improvements
1 parent 67f4201 commit eaf0553

File tree

3 files changed

+26
-6
lines changed

3 files changed

+26
-6
lines changed

assets/css/style.css

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/* ======== ======== ======== ======== ======== ======== ======== ======== */
2+
/* */
3+
/* ADJUST THE STYLINGS ACCORDINGLY */
4+
/* */
5+
/* ======== ======== ======== ======== ======== ======== ======== ======== */
6+
17
/* ========== Google Fonts Import ========== */
28
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap');
39

@@ -186,7 +192,7 @@ main.active-gradient::before {
186192

187193
/* ========== Icon Styles ========== */
188194
.icon {
189-
color: white;
195+
color: var(--white);
190196
line-height: 0;
191197
width: 1.75em;
192198
height: 1.75em;
@@ -280,4 +286,4 @@ main.active-gradient::before {
280286
background: linear-gradient(135deg, #333333 0%, #000000 100%);
281287
}
282288

283-
/* ========== End of Styles ========== */
289+
/* ======== ======== ======== ======== ======== ======== ======== ======== */

assets/js/script.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// ======== ======== ======== ======== ======== ======== ======== ======== //
2+
// //
3+
// ALWAYS KEEP ALL THE DATA UP TO DATE //
4+
// //
5+
// ======== ======== ======== ======== ======== ======== ======== ======== //
6+
17
// ========== User Data ==========
28
const userData = {
39
userName: "Md. Jahidul Islam Sujan",
@@ -31,6 +37,12 @@ const userData = {
3137
]
3238
};
3339

40+
// ======== ======== ======== ======== ======== ======== ======== ======== //
41+
// //
42+
// NEVER MODIFY ANY CODE BELOW //
43+
// //
44+
// ======== ======== ======== ======== ======== ======== ======== ======== //
45+
3446
// ========== Selectors ==========
3547
const coverPicBox = document.querySelector('.cover-pic');
3648
const profilePicBox = document.querySelector('.profile-pic');
@@ -147,3 +159,9 @@ function startTypingEffect(titles) {
147159

148160
setTimeout(() => startTypingEffect(titles), typingSpeed);
149161
}
162+
163+
// ======== ======== ======== ======== ======== ======== ======== ======== //
164+
// //
165+
// NEVER MODIFY ANY CODE ABOVE //
166+
// //
167+
// ======== ======== ======== ======== ======== ======== ======== ======== //

index.html

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
<link rel="stylesheet" href="assets/css/style.css">
1818
<!-- page title -->
1919
<title> Md. Jahidul Islam Sujan </title>
20-
2120
<!-- Global site tag (gtag.js) - Google Analytics -->
2221
<script async src="https://www.googletagmanager.com/gtag/js?id=G-GP0L6FC17M"></script>
2322
<script>
@@ -29,11 +28,9 @@
2928
}
3029
</script>
3130
<!-- Google tag (gtag.js) --- done -->
32-
3331
</head>
3432

3533
<body>
36-
3734
<main>
3835
<section>
3936
<div class="cover-pic skeleton"></div>
@@ -48,7 +45,6 @@
4845

4946
<!-- custom js -->
5047
<script src="assets/js/script.js"></script>
51-
5248
</body>
5349

5450
</html>

0 commit comments

Comments
 (0)