Spaces:
Running
Running
Upload 3 files
Browse files- app.js +39 -0
- index.html +161 -19
- style.css +698 -18
app.js
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
$(document).ready(function () {
|
2 |
+
$(window).scroll(function () {
|
3 |
+
// checks if window is scrolled more than 500px, adds/removes solid class
|
4 |
+
if ($(this).scrollTop() > 550) {
|
5 |
+
$('.navbar').addClass('solid');
|
6 |
+
$('.back-to-top').addClass('visible');
|
7 |
+
} else {
|
8 |
+
$('.navbar').removeClass('solid');
|
9 |
+
$('.back-to-top').removeClass('visible');
|
10 |
+
}
|
11 |
+
|
12 |
+
});
|
13 |
+
});
|
14 |
+
|
15 |
+
|
16 |
+
$(document).ready(function () {
|
17 |
+
// Add smooth scrolling to all links
|
18 |
+
$("a").on('click', function (event) {
|
19 |
+
|
20 |
+
// Make sure this.hash has a value before overriding default behavior
|
21 |
+
if (this.hash !== "") {
|
22 |
+
// Prevent default anchor click behavior
|
23 |
+
event.preventDefault();
|
24 |
+
|
25 |
+
// Store hash
|
26 |
+
var hash = this.hash;
|
27 |
+
|
28 |
+
// Using jQuery's animate() method to add smooth page scroll
|
29 |
+
// The optional number (800) specifies the number of milliseconds it takes to scroll to the specified area
|
30 |
+
$('html, body').animate({
|
31 |
+
scrollTop: $(hash).offset().top
|
32 |
+
}, 800, function () {
|
33 |
+
|
34 |
+
// Add hash (#) to URL when done scrolling (default click behavior)
|
35 |
+
window.location.hash = hash;
|
36 |
+
});
|
37 |
+
} // End if
|
38 |
+
});
|
39 |
+
});
|
index.html
CHANGED
@@ -1,19 +1,161 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
</
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<html lang="en">
|
2 |
+
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8" />
|
5 |
+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
7 |
+
<title>Portfolio</title>
|
8 |
+
<link rel="stylesheet" href="style.css" />
|
9 |
+
<script src="https://kit.fontawesome.com/66aa7c98b3.js" crossorigin="anonymous"></script>
|
10 |
+
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
|
11 |
+
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
|
12 |
+
</head>
|
13 |
+
|
14 |
+
<body>
|
15 |
+
<header class="header">
|
16 |
+
<nav class="navbar">
|
17 |
+
<div class="navbar-container container">
|
18 |
+
<div>
|
19 |
+
<h1 class="navbar-brand">Samriddhi Singh</h1>
|
20 |
+
</div>
|
21 |
+
<ul class="menu-items">
|
22 |
+
<li><a href="#about">About</a></li>
|
23 |
+
<li><a href="#my-works">Portfolio</a></li>
|
24 |
+
<li><a href="#contact-me">Contact</a></li>
|
25 |
+
</ul>
|
26 |
+
</div>
|
27 |
+
</nav>
|
28 |
+
<div class="home-content" id="home-page">
|
29 |
+
<div class="name">
|
30 |
+
<h1>Hi, I'm Saamriddhi</h1>
|
31 |
+
<p>A Web Developer.</p>
|
32 |
+
</div>
|
33 |
+
<div class="angle-down-icon">
|
34 |
+
<a href="#about"><i class="fas fa-angle-down"></i></a>
|
35 |
+
</div>
|
36 |
+
</div>
|
37 |
+
</header>
|
38 |
+
<section class="about-me" id="about">
|
39 |
+
<div class="container">
|
40 |
+
<div class="about-content">
|
41 |
+
<div class="left-content">
|
42 |
+
<div>
|
43 |
+
<h1 class="about-heading">About Me</h1>
|
44 |
+
</div>
|
45 |
+
<p>
|
46 |
+
I am 20 year old, BTech student studying at Manipal University Jaipur.
|
47 |
+
I really enjoy solving problems as well as making things pretty and easy to use. I can't stop learning new
|
48 |
+
things; the more, the better.
|
49 |
+
</p>
|
50 |
+
<div class="work-arrow">
|
51 |
+
<p>
|
52 |
+
<a href="#my-works">Check out my work <i class="fas fa-arrow-down"></i></a>
|
53 |
+
</p>
|
54 |
+
</div>
|
55 |
+
</div>
|
56 |
+
<div class="skills">
|
57 |
+
<div class="right-content">
|
58 |
+
<div>
|
59 |
+
<h1 class="skills-heading">My Skills</h1>
|
60 |
+
</div>
|
61 |
+
<div class="skills-bar">
|
62 |
+
<div class="bar">
|
63 |
+
<div class="info">
|
64 |
+
<span>HTML</span>
|
65 |
+
</div>
|
66 |
+
<div class="progress-line"><span class="html"></span></div>
|
67 |
+
<div class="bar">
|
68 |
+
<div class="info">
|
69 |
+
<span>CSS</span>
|
70 |
+
</div>
|
71 |
+
<div class="progress-line"><span class="css"></span></div>
|
72 |
+
<div class="bar">
|
73 |
+
<div class="info">
|
74 |
+
<span>BOOTSTRAP</span>
|
75 |
+
</div>
|
76 |
+
<div class="progress-line"><span class="bootstrap"></span></div>
|
77 |
+
<div class="bar">
|
78 |
+
<div class="info">
|
79 |
+
<span>JAVASCRIPT</span>
|
80 |
+
</div>
|
81 |
+
<div class="progress-line"><span class="javascript"></span></div>
|
82 |
+
<div class="bar">
|
83 |
+
<div class="info">
|
84 |
+
<span>C Programming</span>
|
85 |
+
</div>
|
86 |
+
<div class="progress-line"><span class="c"></span></div>
|
87 |
+
</div>
|
88 |
+
</div>
|
89 |
+
</div>
|
90 |
+
</div>
|
91 |
+
</div>
|
92 |
+
</div>
|
93 |
+
<div class="work-arrow-2">
|
94 |
+
<p>
|
95 |
+
<a href="#my-works">Check out my work <i class="fas fa-arrow-down"></i></a>
|
96 |
+
</p>
|
97 |
+
</div>
|
98 |
+
</div>
|
99 |
+
</div>
|
100 |
+
</div>
|
101 |
+
</div>
|
102 |
+
</section>
|
103 |
+
<section id="my-works">
|
104 |
+
<div class="portfolio">
|
105 |
+
<div class="proj-heading">
|
106 |
+
<h1>Portfolio</h1>
|
107 |
+
</div>
|
108 |
+
<div class="portfolio-content container">
|
109 |
+
<div class="proj-1">
|
110 |
+
<div class="proj1-details">
|
111 |
+
<i class="fab fa-html5"></i>
|
112 |
+
<i class="fab fa-css3-alt"></i>
|
113 |
+
<i class="fab fa-js"></i>
|
114 |
+
<i class="fab fa-php"></i>
|
115 |
+
<h2>Restaurant Website UI</h2>
|
116 |
+
<p>Build Using HTML,CSS,JS,PHP</p>
|
117 |
+
<button><a href="https://github.com/Samriddhii-Siingh/Projectify" target="blank">View source <i
|
118 |
+
class="fas fa-external-link-alt"></i></a>
|
119 |
+
</button>
|
120 |
+
</div>
|
121 |
+
</div>
|
122 |
+
|
123 |
+
<div class="proj-2">
|
124 |
+
<div class="proj2-details">
|
125 |
+
<i class="fab fa-java"></i>
|
126 |
+
<h2>Wallet Application</h2>
|
127 |
+
<p>Build Using JAVA,MySQL</p>
|
128 |
+
<button><a href="https://github.com/Samriddhii-Siingh/WalletApplication" target="blank">View source <i
|
129 |
+
class="fas fa-external-link-alt"></i></a>
|
130 |
+
</button>
|
131 |
+
</div>
|
132 |
+
|
133 |
+
</div>
|
134 |
+
<div class="more-work">
|
135 |
+
<p>
|
136 |
+
More
|
137 |
+
</p>
|
138 |
+
<a href="https://github.com/Samriddhii-Siingh" target="blank">GitHub</a>
|
139 |
+
</div>
|
140 |
+
</div>
|
141 |
+
</div>
|
142 |
+
</section>
|
143 |
+
<div class="contact" id="contact-me">
|
144 |
+
<div class="container">
|
145 |
+
<div class="contact-content">
|
146 |
+
<h2>Contact Me</h2>
|
147 |
+
<p class="mail">
|
148 |
+
Get in touch with me <i class="fas fa-arrow-right"></i> [email protected]
|
149 |
+
</p>
|
150 |
+
<p class="links">Or find me on:</p>
|
151 |
+
<a href="https://www.linkedin.com/in/samriddhi-singh-624777201/" target="blank"><i class="fab fa-linkedin">
|
152 |
+
Linkedin</i></a>
|
153 |
+
<a href="https://github.com/Samriddhii-Siingh" target="blank"><i class="fab fa-github"></i> Github</a></div>
|
154 |
+
</div>
|
155 |
+
</div>
|
156 |
+
<!-- JAVASCRIPT -->
|
157 |
+
<script src="app.js"></script>
|
158 |
+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
|
159 |
+
</body>
|
160 |
+
|
161 |
+
</html>
|
style.css
CHANGED
@@ -1,28 +1,708 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
body {
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
}
|
5 |
|
6 |
-
|
7 |
-
|
8 |
-
|
|
|
9 |
}
|
10 |
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
|
|
|
|
16 |
}
|
17 |
|
18 |
-
.
|
19 |
-
|
20 |
-
margin: 0 auto;
|
21 |
-
padding: 16px;
|
22 |
-
border: 1px solid lightgray;
|
23 |
-
border-radius: 16px;
|
24 |
}
|
25 |
|
26 |
-
.
|
27 |
-
|
|
|
28 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
2 |
+
|
3 |
+
* {
|
4 |
+
margin: 0;
|
5 |
+
padding: 0;
|
6 |
+
box-sizing: border-box;
|
7 |
+
}
|
8 |
+
|
9 |
body {
|
10 |
+
font-family: "Poppins", sans-serif;
|
11 |
+
}
|
12 |
+
|
13 |
+
header {
|
14 |
+
background-color: #25b79f;
|
15 |
+
height: 100vh;
|
16 |
+
}
|
17 |
+
|
18 |
+
.container {
|
19 |
+
max-width: 1200px;
|
20 |
+
width: 90%;
|
21 |
+
margin: auto;
|
22 |
+
}
|
23 |
+
|
24 |
+
/* ////........Navbar.......//// */
|
25 |
+
|
26 |
+
.navbar {
|
27 |
+
position: fixed;
|
28 |
+
width: 100%;
|
29 |
+
z-index: 500;
|
30 |
+
}
|
31 |
+
|
32 |
+
.navbar-container {
|
33 |
+
display: flex;
|
34 |
+
justify-content: space-between;
|
35 |
+
align-items: center;
|
36 |
+
height: 64px;
|
37 |
+
}
|
38 |
+
|
39 |
+
.menu-items {
|
40 |
+
display: flex;
|
41 |
+
}
|
42 |
+
|
43 |
+
.menu-items li {
|
44 |
+
list-style: none;
|
45 |
+
padding: 1rem;
|
46 |
+
}
|
47 |
+
|
48 |
+
.menu-items a {
|
49 |
+
text-decoration: none;
|
50 |
+
color: #f0f0e6;
|
51 |
+
font-size: 1.2rem;
|
52 |
+
padding: 0.3rem;
|
53 |
+
}
|
54 |
+
|
55 |
+
.menu-items a:hover {
|
56 |
+
border-bottom: 2px solid #f0f0e6;
|
57 |
+
}
|
58 |
+
|
59 |
+
.navbar .logo {
|
60 |
+
order: 1;
|
61 |
+
color: #f0f0e6;
|
62 |
+
font-size: 2rem;
|
63 |
+
}
|
64 |
+
|
65 |
+
/* ////........Home Content........//// */
|
66 |
+
|
67 |
+
.home-content .name {
|
68 |
+
position: absolute;
|
69 |
+
top: 47%;
|
70 |
+
left: 50%;
|
71 |
+
transform: translate(-50%, -50%);
|
72 |
+
color: #07374a;
|
73 |
+
width: 100%;
|
74 |
+
text-align: center;
|
75 |
+
}
|
76 |
+
|
77 |
+
.home-content .name h1 {
|
78 |
+
font-size: 2.2rem;
|
79 |
+
text-align: center;
|
80 |
+
}
|
81 |
+
|
82 |
+
.home-content .name p {
|
83 |
+
color: #f0f0e6;
|
84 |
+
font-size: 1.5rem;
|
85 |
+
}
|
86 |
+
|
87 |
+
.angle-down-icon {
|
88 |
+
position: absolute;
|
89 |
+
bottom: 10%;
|
90 |
+
left: 50%;
|
91 |
+
transform: translate(-50%, -50%);
|
92 |
+
font-size: 2rem;
|
93 |
+
border: 3px solid #07374a;
|
94 |
+
border-radius: 50%;
|
95 |
+
}
|
96 |
+
|
97 |
+
.angle-down-icon a {
|
98 |
+
text-decoration: none;
|
99 |
+
color: #07374a;
|
100 |
+
padding: 1rem;
|
101 |
+
}
|
102 |
+
|
103 |
+
/* ////........About Me........//// */
|
104 |
+
|
105 |
+
.about-me {
|
106 |
+
background-color: #07374a;
|
107 |
+
padding: 6rem 0;
|
108 |
+
}
|
109 |
+
|
110 |
+
.about-me .about-heading {
|
111 |
+
color: #25b79f;
|
112 |
+
font-size: 2rem;
|
113 |
+
font-weight: 600;
|
114 |
+
text-align: center;
|
115 |
+
}
|
116 |
+
|
117 |
+
.about-content img {
|
118 |
+
height: 200px;
|
119 |
+
width: 150px;
|
120 |
+
object-fit: cover;
|
121 |
+
border-radius: 50%;
|
122 |
+
}
|
123 |
+
|
124 |
+
.about-content p {
|
125 |
+
font-size: 1.2rem;
|
126 |
+
color: #f0f0e6;
|
127 |
+
padding: 0 2.3rem;
|
128 |
+
text-align: center;
|
129 |
+
}
|
130 |
+
|
131 |
+
.skills .skills-heading {
|
132 |
+
font-size: 2rem;
|
133 |
+
font-weight: 600;
|
134 |
+
color: #25b79f;
|
135 |
+
text-align: center;
|
136 |
+
}
|
137 |
+
|
138 |
+
.about-me .about-content {
|
139 |
+
display: flex;
|
140 |
+
flex-wrap: wrap;
|
141 |
+
}
|
142 |
+
|
143 |
+
.about-content .left-content {
|
144 |
+
flex-basis: 45%;
|
145 |
+
text-align: center;
|
146 |
+
}
|
147 |
+
|
148 |
+
.about-content .right-content {
|
149 |
+
flex-basis: 45%;
|
150 |
+
}
|
151 |
+
|
152 |
+
/* ///.....Skill Bar....../// */
|
153 |
+
|
154 |
+
.skills-bar {
|
155 |
+
padding: 25px 30px;
|
156 |
+
}
|
157 |
+
|
158 |
+
.skills-bar .bar {
|
159 |
+
margin: 25px 0;
|
160 |
+
}
|
161 |
+
|
162 |
+
.skills-bar .bar .info span {
|
163 |
+
font-size: 1rem;
|
164 |
+
font-weight: 500;
|
165 |
+
}
|
166 |
+
|
167 |
+
.skills-bar .bar .info {
|
168 |
+
margin-bottom: 8px;
|
169 |
+
color: #f0f0e6;
|
170 |
+
}
|
171 |
+
|
172 |
+
.skills-bar .bar .progress-line {
|
173 |
+
position: relative;
|
174 |
+
height: 10px;
|
175 |
+
width: 550px;
|
176 |
+
background: #f0f0f0;
|
177 |
+
border-radius: 10px;
|
178 |
+
transform: scaleX(0);
|
179 |
+
transform-origin: left;
|
180 |
+
animation: animate 1s cubic-bezier(1, 0, 0.5, 1) forwards;
|
181 |
+
}
|
182 |
+
|
183 |
+
.bar .progress-line span {
|
184 |
+
position: absolute;
|
185 |
+
background: #25b79f;
|
186 |
+
height: 100%;
|
187 |
+
border-radius: 10px;
|
188 |
+
transform: scaleX(0);
|
189 |
+
transform-origin: left;
|
190 |
+
animation: animate 1s 1s cubic-bezier(1, 0, 0.5, 1) forwards;
|
191 |
+
}
|
192 |
+
|
193 |
+
@keyframes animate {
|
194 |
+
100% {
|
195 |
+
transform: scaleX(1);
|
196 |
+
}
|
197 |
+
}
|
198 |
+
|
199 |
+
.progress-line .html {
|
200 |
+
width: 80%;
|
201 |
+
}
|
202 |
+
.progress-line .css {
|
203 |
+
width: 70%;
|
204 |
+
}
|
205 |
+
.progress-line .bootstrap {
|
206 |
+
width: 50%;
|
207 |
+
}
|
208 |
+
.progress-line .javascript {
|
209 |
+
width: 50%;
|
210 |
+
}
|
211 |
+
.progress-line .c {
|
212 |
+
width: 50%;
|
213 |
+
}
|
214 |
+
|
215 |
+
.bar .progress-line span::before {
|
216 |
+
position: absolute;
|
217 |
+
content: "";
|
218 |
+
height: 0;
|
219 |
+
right: 0;
|
220 |
+
top: -12px;
|
221 |
+
width: 0;
|
222 |
+
border: 7px solid transparent;
|
223 |
+
border-bottom-width: 0px;
|
224 |
+
border-right-width: 0px;
|
225 |
+
border-top-style: #f0f0f0;
|
226 |
+
border-top-color: #f0f0f0;
|
227 |
+
}
|
228 |
+
|
229 |
+
.bar .progress-line span::after {
|
230 |
+
position: absolute;
|
231 |
+
right: 0;
|
232 |
+
top: -28px;
|
233 |
+
color: #07374a;
|
234 |
+
font-size: 12px;
|
235 |
+
font-weight: 700;
|
236 |
+
background: #f0f0f0;
|
237 |
+
padding: 1px 8px;
|
238 |
+
border-radius: 3px;
|
239 |
+
}
|
240 |
+
|
241 |
+
.progress-line .html::after {
|
242 |
+
content: "80%";
|
243 |
+
}
|
244 |
+
.progress-line .css::after {
|
245 |
+
content: "70%";
|
246 |
+
}
|
247 |
+
.progress-line .bootstrap::after {
|
248 |
+
content: "50%";
|
249 |
+
}
|
250 |
+
.progress-line .javascript::after {
|
251 |
+
content: "50%";
|
252 |
+
}
|
253 |
+
.progress-line .c::after {
|
254 |
+
content: "50%";
|
255 |
+
}
|
256 |
+
|
257 |
+
.navbar.solid {
|
258 |
+
background-color: #07374a;
|
259 |
+
transition: background-color 1s ease 0s;
|
260 |
+
box-shadow: 0 0 4px rgb(7 55 74 / 20%);
|
261 |
+
z-index: 500;
|
262 |
+
}
|
263 |
+
|
264 |
+
.navbar.solid .navbar-brand {
|
265 |
+
display: inline-block;
|
266 |
+
color: #f0f0e6;
|
267 |
+
transition: color 1s ease 0s;
|
268 |
+
}
|
269 |
+
|
270 |
+
.navbar-brand {
|
271 |
+
display: none;
|
272 |
+
color: #f0f0e6;
|
273 |
+
font-weight: 400;
|
274 |
+
}
|
275 |
+
|
276 |
+
.work-arrow {
|
277 |
+
margin: 2rem 0;
|
278 |
+
}
|
279 |
+
|
280 |
+
.work-arrow a {
|
281 |
+
font-size: 1rem;
|
282 |
+
text-decoration: none;
|
283 |
+
color: #25b79f;
|
284 |
+
}
|
285 |
+
|
286 |
+
.work-arrow-2 {
|
287 |
+
margin: 2rem 0;
|
288 |
+
}
|
289 |
+
|
290 |
+
.work-arrow-2 a {
|
291 |
+
font-size: 1rem;
|
292 |
+
text-decoration: none;
|
293 |
+
color: #25b79f;
|
294 |
+
display: none;
|
295 |
+
}
|
296 |
+
|
297 |
+
/* ////.....Portfolio......///// */
|
298 |
+
|
299 |
+
.portfolio {
|
300 |
+
background: #25b79f;
|
301 |
+
padding: 6rem 0;
|
302 |
+
}
|
303 |
+
|
304 |
+
.proj-heading h1 {
|
305 |
+
text-align: center;
|
306 |
+
color: #07374a;
|
307 |
+
font-size: 2.3rem;
|
308 |
+
font-weight: 700;
|
309 |
+
margin: 3rem 0;
|
310 |
}
|
311 |
|
312 |
+
.proj-1 {
|
313 |
+
display: flex;
|
314 |
+
justify-content: center;
|
315 |
+
align-items: center;
|
316 |
}
|
317 |
|
318 |
+
.proj-1 img {
|
319 |
+
height: 330px;
|
320 |
+
width: 380px;
|
321 |
+
object-fit: cover;
|
322 |
+
border-radius: 50%;
|
323 |
+
box-shadow: 0 20px 10px -10px rgb(37 41 52 / 31%);
|
324 |
+
margin-right: 1.7rem;
|
325 |
}
|
326 |
|
327 |
+
.proj-1 .proj1-details {
|
328 |
+
width: 32rem;
|
|
|
|
|
|
|
|
|
329 |
}
|
330 |
|
331 |
+
.proj-1 .proj1-details i {
|
332 |
+
font-size: 1.5rem;
|
333 |
+
color: #07374a;
|
334 |
}
|
335 |
+
|
336 |
+
.proj-1 .proj1-details h2 {
|
337 |
+
font-size: 2rem;
|
338 |
+
color: #07374a;
|
339 |
+
}
|
340 |
+
|
341 |
+
.proj-1 .proj1-details p {
|
342 |
+
font-size: 1.3rem;
|
343 |
+
color: #07374a;
|
344 |
+
font-weight: 600;
|
345 |
+
}
|
346 |
+
|
347 |
+
.proj-1 .proj1-details button {
|
348 |
+
background: #f0f0e6;
|
349 |
+
padding: 0.5rem;
|
350 |
+
margin-top: 0.5rem;
|
351 |
+
width: 150px;
|
352 |
+
border: none;
|
353 |
+
border-bottom: 2px solid #07374a;
|
354 |
+
}
|
355 |
+
|
356 |
+
.proj-1 .proj1-details button a {
|
357 |
+
text-decoration: none;
|
358 |
+
color: #07374a;
|
359 |
+
font-size: 1.1rem;
|
360 |
+
transition: 0.2s ease-in-out;
|
361 |
+
text-align: center;
|
362 |
+
transition: 0.3s ease-in-out;
|
363 |
+
}
|
364 |
+
|
365 |
+
.proj-1 .proj1-details button .fas {
|
366 |
+
font-size: 0.7rem;
|
367 |
+
padding: 0.3rem;
|
368 |
+
transition: 0.2s ease-in-out;
|
369 |
+
}
|
370 |
+
|
371 |
+
.proj-1 .proj1-details button:hover {
|
372 |
+
background: #07374a;
|
373 |
+
}
|
374 |
+
|
375 |
+
.proj-1 .proj1-details button:hover a,
|
376 |
+
.proj-1 .proj1-details button:hover .fas {
|
377 |
+
color: #f0f0e6;
|
378 |
+
}
|
379 |
+
|
380 |
+
/* ////.....proj2.....//// */
|
381 |
+
|
382 |
+
.proj-2 {
|
383 |
+
display: flex;
|
384 |
+
justify-content: center;
|
385 |
+
align-items: center;
|
386 |
+
margin-top: 3rem;
|
387 |
+
}
|
388 |
+
|
389 |
+
.proj-2 img {
|
390 |
+
height: 330px;
|
391 |
+
width: 380px;
|
392 |
+
object-fit: cover;
|
393 |
+
border-radius: 50%;
|
394 |
+
box-shadow: 0 20px 10px -10px rgb(37 41 52 / 31%);
|
395 |
+
margin-right: 1.7rem;
|
396 |
+
}
|
397 |
+
|
398 |
+
.proj-2 .proj2-details {
|
399 |
+
width: 32rem;
|
400 |
+
}
|
401 |
+
|
402 |
+
.proj-2 .proj2-details i {
|
403 |
+
font-size: 1.5rem;
|
404 |
+
color: #07374a;
|
405 |
+
}
|
406 |
+
|
407 |
+
.proj-2 .proj2-details h2 {
|
408 |
+
font-size: 2rem;
|
409 |
+
color: #07374a;
|
410 |
+
}
|
411 |
+
|
412 |
+
.proj-2 .proj2-details p {
|
413 |
+
font-size: 1.3rem;
|
414 |
+
color: #07374a;
|
415 |
+
font-weight: 600;
|
416 |
+
}
|
417 |
+
|
418 |
+
.proj-2 .proj2-details button {
|
419 |
+
background: #f0f0e6;
|
420 |
+
padding: 0.5rem;
|
421 |
+
margin-top: 0.5rem;
|
422 |
+
width: 150px;
|
423 |
+
border: none;
|
424 |
+
border-bottom: 2px solid #07374a;
|
425 |
+
}
|
426 |
+
|
427 |
+
.proj-2 .proj2-details button a {
|
428 |
+
text-decoration: none;
|
429 |
+
color: #07374a;
|
430 |
+
font-size: 1.1rem;
|
431 |
+
transition: 0.2s ease-in-out;
|
432 |
+
text-align: center;
|
433 |
+
transition: 0.3s ease-in-out;
|
434 |
+
}
|
435 |
+
|
436 |
+
.proj-2 .proj2-details button .fas {
|
437 |
+
font-size: 0.7rem;
|
438 |
+
padding: 0.3rem;
|
439 |
+
transition: 0.2s ease-in-out;
|
440 |
+
}
|
441 |
+
|
442 |
+
.proj-2 .proj2-details button:hover {
|
443 |
+
background: #07374a;
|
444 |
+
}
|
445 |
+
|
446 |
+
.proj-2 .proj2-details button:hover a,
|
447 |
+
.proj-2 .proj2-details button:hover .fas {
|
448 |
+
color: #f0f0e6;
|
449 |
+
}
|
450 |
+
|
451 |
+
.more-work {
|
452 |
+
text-align: center;
|
453 |
+
margin: 3rem 0 1rem 0;
|
454 |
+
}
|
455 |
+
|
456 |
+
.more-work p {
|
457 |
+
font-size: 1.6rem;
|
458 |
+
color: #07374a;
|
459 |
+
font-weight: 500;
|
460 |
+
}
|
461 |
+
|
462 |
+
.more-work a {
|
463 |
+
text-decoration: none;
|
464 |
+
color: #f0f0e6;
|
465 |
+
font-size: 1.3rem;
|
466 |
+
}
|
467 |
+
|
468 |
+
.more-work a:hover {
|
469 |
+
border-bottom: 2px solid #f0f0e6;
|
470 |
+
}
|
471 |
+
|
472 |
+
/* ////......Contact......///// */
|
473 |
+
|
474 |
+
.contact {
|
475 |
+
background: #07374a;
|
476 |
+
position: relative;
|
477 |
+
height: 92vh;
|
478 |
+
}
|
479 |
+
|
480 |
+
.contact-content {
|
481 |
+
position: absolute;
|
482 |
+
top: 50%;
|
483 |
+
left: 50%;
|
484 |
+
transform: translate(-50%, -50%);
|
485 |
+
text-align: center;
|
486 |
+
}
|
487 |
+
|
488 |
+
.contact-content h2 {
|
489 |
+
font-size: 2.5rem;
|
490 |
+
font-weight: 400;
|
491 |
+
color: #25b79f;
|
492 |
+
padding-bottom: 0.5rem;
|
493 |
+
}
|
494 |
+
|
495 |
+
.contact-content .mail {
|
496 |
+
color: #f0f0e6;
|
497 |
+
padding-bottom: 0.2rem;
|
498 |
+
font-size: 1rem;
|
499 |
+
}
|
500 |
+
|
501 |
+
.contact-content .links {
|
502 |
+
color: #25b79f;
|
503 |
+
padding: 0.5rem;
|
504 |
+
padding-bottom: 1.8rem;
|
505 |
+
font-size: 1rem;
|
506 |
+
}
|
507 |
+
|
508 |
+
.contact-content a {
|
509 |
+
text-decoration: none;
|
510 |
+
color: #25b79f;
|
511 |
+
padding: 0.5rem;
|
512 |
+
transition: 0.3s ease-in-out;
|
513 |
+
}
|
514 |
+
|
515 |
+
.contact-content a:hover {
|
516 |
+
color: #f0f0e6;
|
517 |
+
}
|
518 |
+
|
519 |
+
/* ////......Media query......//// */
|
520 |
+
|
521 |
+
@media (max-width: 500px) {
|
522 |
+
html {
|
523 |
+
font-size: 60%;
|
524 |
+
}
|
525 |
+
|
526 |
+
.about-content .left-content {
|
527 |
+
flex-basis: 100%;
|
528 |
+
text-align: center;
|
529 |
+
}
|
530 |
+
|
531 |
+
.about-content .right-content {
|
532 |
+
flex-basis: 100%;
|
533 |
+
}
|
534 |
+
|
535 |
+
.skills {
|
536 |
+
width: 100%;
|
537 |
+
}
|
538 |
+
|
539 |
+
.skills-bar .bar .progress-line {
|
540 |
+
width: 100%;
|
541 |
+
}
|
542 |
+
|
543 |
+
.work-arrow {
|
544 |
+
display: none;
|
545 |
+
}
|
546 |
+
|
547 |
+
.right-content h1 {
|
548 |
+
margin-top: 3.2rem;
|
549 |
+
}
|
550 |
+
|
551 |
+
.proj-1 {
|
552 |
+
display: flex;
|
553 |
+
justify-content: center;
|
554 |
+
flex-direction: column;
|
555 |
+
}
|
556 |
+
|
557 |
+
.proj-1 img {
|
558 |
+
height: 230px;
|
559 |
+
width: 290px;
|
560 |
+
margin-bottom: 0.5rem;
|
561 |
+
}
|
562 |
+
|
563 |
+
.proj-2 {
|
564 |
+
display: flex;
|
565 |
+
justify-content: center;
|
566 |
+
flex-direction: column;
|
567 |
+
}
|
568 |
+
|
569 |
+
.proj-2 img {
|
570 |
+
height: 250px;
|
571 |
+
width: 290px;
|
572 |
+
margin-bottom: 0.5rem;
|
573 |
+
}
|
574 |
+
|
575 |
+
.work-arrow-2 a {
|
576 |
+
font-size: 1.3rem;
|
577 |
+
text-decoration: none;
|
578 |
+
color: #25b79f;
|
579 |
+
display: block;
|
580 |
+
text-align: center;
|
581 |
+
}
|
582 |
+
|
583 |
+
.contact-content {
|
584 |
+
width: 100%;
|
585 |
+
}
|
586 |
+
}
|
587 |
+
|
588 |
+
@media (min-width: 501px) and (max-width: 768px) {
|
589 |
+
html {
|
590 |
+
font-size: 65%;
|
591 |
+
}
|
592 |
+
|
593 |
+
.about-content .left-content {
|
594 |
+
flex-basis: 100%;
|
595 |
+
text-align: center;
|
596 |
+
}
|
597 |
+
|
598 |
+
.about-content .right-content {
|
599 |
+
flex-basis: 100%;
|
600 |
+
}
|
601 |
+
|
602 |
+
.skills {
|
603 |
+
width: 100%;
|
604 |
+
}
|
605 |
+
|
606 |
+
.skills-bar .bar .progress-line {
|
607 |
+
width: 100%;
|
608 |
+
}
|
609 |
+
|
610 |
+
.work-arrow {
|
611 |
+
display: none;
|
612 |
+
}
|
613 |
+
|
614 |
+
.right-content h1 {
|
615 |
+
margin-top: 3.2rem;
|
616 |
+
}
|
617 |
+
|
618 |
+
.proj-1 {
|
619 |
+
display: flex;
|
620 |
+
justify-content: center;
|
621 |
+
flex-direction: column;
|
622 |
+
}
|
623 |
+
|
624 |
+
.proj-1 img {
|
625 |
+
height: 240px;
|
626 |
+
width: 290px;
|
627 |
+
margin-bottom: 0.5rem;
|
628 |
+
}
|
629 |
+
|
630 |
+
.proj-2 {
|
631 |
+
display: flex;
|
632 |
+
justify-content: center;
|
633 |
+
flex-direction: column;
|
634 |
+
}
|
635 |
+
|
636 |
+
.proj-2 img {
|
637 |
+
height: 240px;
|
638 |
+
width: 290px;
|
639 |
+
margin-bottom: 0.5rem;
|
640 |
+
}
|
641 |
+
|
642 |
+
.work-arrow-2 a {
|
643 |
+
font-size: 1.3rem;
|
644 |
+
text-decoration: none;
|
645 |
+
color: #25b79f;
|
646 |
+
display: block;
|
647 |
+
text-align: center;
|
648 |
+
}
|
649 |
+
|
650 |
+
.contact-content {
|
651 |
+
width: 100%;
|
652 |
+
}
|
653 |
+
}
|
654 |
+
|
655 |
+
@media (min-width: 769px) and (max-width: 1200px) {
|
656 |
+
html {
|
657 |
+
font-size: 70%;
|
658 |
+
}
|
659 |
+
|
660 |
+
.about-content .left-content {
|
661 |
+
flex-basis: 100%;
|
662 |
+
text-align: center;
|
663 |
+
}
|
664 |
+
|
665 |
+
.about-content .right-content {
|
666 |
+
flex-basis: 100%;
|
667 |
+
}
|
668 |
+
|
669 |
+
.skills {
|
670 |
+
width: 100%;
|
671 |
+
display: flex;
|
672 |
+
flex-direction: column;
|
673 |
+
justify-content: center;
|
674 |
+
align-items: center;
|
675 |
+
}
|
676 |
+
|
677 |
+
.work-arrow {
|
678 |
+
display: none;
|
679 |
+
}
|
680 |
+
|
681 |
+
.left-content h1 {
|
682 |
+
margin-top: 3.2rem;
|
683 |
+
text-align: center;
|
684 |
+
}
|
685 |
+
|
686 |
+
.right-content h1 {
|
687 |
+
margin-top: 3.2rem;
|
688 |
+
text-align: center;
|
689 |
+
}
|
690 |
+
|
691 |
+
.work-arrow-2 a {
|
692 |
+
font-size: 1.3rem;
|
693 |
+
text-decoration: none;
|
694 |
+
color: #25b79f;
|
695 |
+
display: block;
|
696 |
+
text-align: center;
|
697 |
+
}
|
698 |
+
|
699 |
+
.contact-content {
|
700 |
+
width: 100%;
|
701 |
+
}
|
702 |
+
}
|
703 |
+
|
704 |
+
@media (orientation: landscape) and (max-height: 500px) {
|
705 |
+
.header {
|
706 |
+
height: 90vmax;
|
707 |
+
}
|
708 |
+
}
|