Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
JatinSainiOO7 committed Oct 18, 2024
1 parent 75cc1c9 commit feb9b49
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 14 deletions.
7 changes: 6 additions & 1 deletion src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ button svg:hover {
border-bottom: solid 2px rgb(49,120,198);
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
top: 10%;
top: 40%;
right: 0;
z-index: 1000;

Expand All @@ -60,9 +60,14 @@ button svg:hover {
margin-left: 5px;
z-index: 20;
}

@media (width <= 900px) {
display: none;
}
}



body.light {
background-color: #ffffff;
color: #0000007a;
Expand Down
1 change: 0 additions & 1 deletion src/components/about.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ const AboutSection = () => {
<div className="about-img">
<img src={jatin} alt="" />
</div>
<hr />
<div className="about-me">
<h1 className="jatin">Hey! I am Jatin</h1>
<p className="about-dis">
Expand Down
6 changes: 1 addition & 5 deletions src/components/navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,7 @@ const NavigationSection = () => {

return (
<nav className="navbar-container">
<div>
<a href="/">
<div className="j-t"> Jatin Saini</div>
</a>
</div>
<a href="/" className="menu"> Jatin Saini</a>
<div className="menu">
<a href="">Home</a>
<a href="">About</a>
Expand Down
13 changes: 6 additions & 7 deletions src/styles/components.scss
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,9 @@ pre {

.coll {
width: 100%;
min-width: 300px;
padding: 5em;

@media (max-width: 600px) {
@media (max-width: 900px) {
padding: 5px;
}

Expand All @@ -145,7 +144,7 @@ pre {
}

.slide-window {
width: 500px;
width: 100%;
height: 300px;
overflow: hidden;
background-color: rgba(49, 121, 198);
Expand All @@ -163,9 +162,9 @@ pre {
text-decoration: none; /* Remove underline */
font-size: small;
cursor: pointer;
font-weight: 500;
font-weight: 300;
transition: color 0.3s ease; /* Smooth transition */
margin: 5px; /* Spacing between links */
// margin: 5px; /* Spacing between links */
}

.child:hover {
Expand Down Expand Up @@ -310,8 +309,8 @@ pre {
}

.about-img {
width: 400px;
height: 400px;
width: 300px;
height: 300px;
border: 5px solid var(--background-color);
border-style: double;
border-radius: 50%;
Expand Down

0 comments on commit feb9b49

Please sign in to comment.