Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

In needed a bit of modification #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 24 additions & 16 deletions assets/style.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/* google fonts appear here */
/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

Expand All @@ -11,13 +9,13 @@

}

/* body{
body{
background-color: var(--dark-primary-color);
} */
}
/* root element */
:root {
--dark-primary-color: #000;
--light-secondary-color: #01C38D;
--light-secondary-color: #282890;
}

/* header section appears here */
Expand Down Expand Up @@ -75,17 +73,27 @@
}


.header-section-menu a:hover {
background-color: var(--light-secondary-color);
color: black;
}
.header-section-menu a {
position: relative;
}

.header-section-menu a::before {
content: "";
position: absolute;
bottom: -2px;
left: 0;
width: 0;
height: 2px;
background-color: #df1616;
transition: width 0.3s ease;
}

.header-section-menu a:hover::before {
width: 100%;
}



/* .header-section-button>.button-primary {
margin: 20px 0 20px 0;
padding: 10px;
font-weight: 700;
color: black;
} */

.header-section-button-primary{
background-color: var(--light-secondary-color);
Expand Down Expand Up @@ -538,4 +546,4 @@ textarea {
margin-left: 25px;
}

}
}
15 changes: 11 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css" rel="stylesheet">

<title>Muthu Akalya A - Portfolio</title>

<!-- Font awesome Icons -->
Expand Down Expand Up @@ -82,7 +84,7 @@ <h2>I'm <span>Muthu Akalya</span></h2>
<img src="./assets/Portfolio-image.jpg" alt="Portfolio-image" width="250px" height="250px">
</div> -->

<div class="about-section-content">
<div class="about-section-content" data-aos="zoom-in "data-aos-duration="1500">
<h2>About <span>Me</span></h2>
<hr>
<p>I'm starting out my early career as a Junior Full-Stack Engineer at Cyberdude Networks Private Limited - chennai.Day by day i'm learning and improving my technical skills & knowledge by doing some real-time projects, which would help me to master in Full-stack engineer role.</strong></p>
Expand All @@ -105,7 +107,7 @@ <h2>About <span>Me</span></h2>


<!-- skill section -->
<section class="skill-section" id="skills-section-page">
<section class="skill-section" id="skills-section-page"data-aos="zoom-in" data-aos-duration="1500">
<div class="skill-section-content">
<div class="skill-section-heading">
<h1> My <span>Skills</span></h1>
Expand All @@ -124,9 +126,9 @@ <h1> My <span>Skills</span></h1>
</section>

<!-- contact section -->
<section class="contact-section" id="contact-section-page">
<section class="contact-section" id="contact-section-page" data-aos="zoom-in" data-aos-duration="1500">
<h1>Let's <span>Work Together</span></h1>
<div class="contact-section-form">
<div class="contact-section-form" >
<form>
<div><input type="text" placeholder="Your Name">
</div>
Expand All @@ -143,6 +145,11 @@ <h1>Let's <span>Work Together</span></h1>
<footer class="footer-section-content">
<h4>Copyright &copy; 2023 <a href="https://github.com/MUTHUAKALYA" target="_blank" title="view-GitHub"><span>Muthu Akalya</span></a> All Rights Reserved</h4>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js"></script>
<script>
AOS.init();
</script>

</body>

</html>
Expand Down