Skip to content

Commit

Permalink
done
Browse files Browse the repository at this point in the history
  • Loading branch information
Ojas-Arora committed Dec 23, 2024
1 parent c7f4f13 commit bb3be1d
Show file tree
Hide file tree
Showing 3 changed files with 97 additions and 3 deletions.
33 changes: 32 additions & 1 deletion about.html
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,35 @@
color: #8b4513;
margin-bottom: 10px;
}
.navbar .logo {
margin-left: 65px;
}
.image-button1 {
position: fixed;
top: 5px;
left: 10px; /* Aligns the button to the left side */
background-color: transparent; /* Transparent background */
border: none;
border-radius: 50%;
padding: 0; /* No padding for image button */
cursor: pointer;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease;
}

.image-button1:hover {
transform: scale(1.1);
}

.image-icon1 {
width: 68px;
height: 68px;
border-radius: 50%;
border: 3px solid white;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
z-index: 2;
position: relative;
}
</style>
</head>
<body>
Expand All @@ -355,7 +384,9 @@
<div class="logo">
<h2>Ajivika</h2>
</div>

<button class="image-button1">
<img src="./image.png" alt="Image Button1" class="image-icon1">
</button>
<ul class="nav-links">
<li><a href="./index.html"><i class="fas fa-home"></i>Home</a></li>
<li><a href="./about.html"><i class="fas fa-address-card"></i> About Us</a></li>
Expand Down
32 changes: 32 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -446,13 +446,45 @@
top: 0;
z-index: 1000;
}
.navbar .logo {
margin-left: 65px;
}
.image-button1 {
position: fixed;
top: 5px;
left: 10px; /* Aligns the button to the left side */
background-color: transparent; /* Transparent background */
border: none;
border-radius: 50%;
padding: 0; /* No padding for image button */
cursor: pointer;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease;
}

.image-button1:hover {
transform: scale(1.1);
}

.image-icon1 {
width: 68px;
height: 68px;
border-radius: 50%;
border: 3px solid white;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
z-index: 2;
position: relative;
}
</style>
</head>
<body>
<nav class="navbar">
<div class="logo">
<h2>Ajivika</h2>
</div>
<button class="image-button1">
<img src="./image.png" alt="Image Button1" class="image-icon1">
</button>
<ul class="nav-links">
<li>
<a href="index.html"><i class="fas fa-home"></i> Home</a>
Expand Down
35 changes: 33 additions & 2 deletions resume.html
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,35 @@
.add-icon:hover {
color: #8b4513;
}

.navbar .logo {
margin-left: 65px;
}
.image-button1 {
position: fixed;
top: 5px;
right: 720px; /* Aligns the button to the left side */
background-color: transparent; /* Transparent background */
border: none;
border-radius: 50%;
padding: 0; /* No padding for image button */
cursor: pointer;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease;
}

.image-button1:hover {
transform: scale(1.1);
}

.image-icon1 {
width: 68px;
height: 68px;
border-radius: 50%;
border: 3px solid white;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
z-index: 2;
position: relative;
}
</style>
</head>
<body>
Expand All @@ -462,6 +490,9 @@
<div class="logo">
<h2>Ajivika</h2>
</div>
<button class="image-button1">
<img src="./image.png" alt="Image Button1" class="image-icon1">
</button>
<ul class="nav-links">
<li>
<a href="index.html"><i class="fas fa-home"></i> Home</a>
Expand All @@ -471,7 +502,7 @@ <h2>Ajivika</h2>
<a href="resume.html"><i class="fas fa-file-alt"></i> Resume</a>
</li>
<li>
<a href="https://vwfds2rwkfwfree87eappta.streamlit.app/" target="_blank">
<a href="https://vwfds2rwkfwfree87eappta.streamlit.app/">
<i class="fas fa-book"></i> Courses
</a>
</li>
Expand Down

0 comments on commit bb3be1d

Please sign in to comment.