Skip to content
Merged
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
59 changes: 46 additions & 13 deletions css/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ section {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #7a7878;
background-color: #ffffff;
padding: 10px 20px;
color: rgb(201, 238, 99);
/* color: rgb(201, 238, 99); */
position: fixed;
width: 100%;
top: 0;
Expand All @@ -54,20 +54,30 @@ section {
.brand {
display: flex;
align-items: center;
gap: 8px;
/* space between logo and text */
font-size: 1.4rem;
font-weight: 600;
color: rgb(201, 238, 99);
gap: 10px;
text-decoration: none;
display: inline-grid;
place-items: center;
}

.brand-name {
font-size: 1.8rem;
letter-spacing: 0.5px;
text-transform: uppercase;
}

.brand-name-vimal {
color: #000000;
font-weight: 700;
}

.brand-name-tech {
color: #a6e22e;
/* neon green */
}

/* Logo image */
.logo {
height: 70px;
width: 70px;
height: 36px;
width: 36px;
object-fit: contain;
border-radius: 6px;
/* optional for a softer look */
Expand All @@ -82,12 +92,28 @@ section {
list-style: none;
display: flex;
gap: 15px;
font-size: 20px;
}

.dropdown-menu {
display: none;
position: absolute;
background-color: #ffffff;
border: 1px solid #ccc;
border-radius: 5px;
padding: 10px;
z-index: 1000;
}

.nav-links .dropdown li a {
color: #a6e22e;
/* neon green */
}

.nav-links li a {
text-decoration: none;
color: rgb(201, 238, 99);
transition: color 0.3s;
color: #333;
}

.nav-links li a:hover,
Expand All @@ -111,7 +137,7 @@ section {
@media (max-width: 768px) {
.nav-links {
position: absolute;
top: 80px;
top: 65px;
right: 0;
background-color: #333;
flex-direction: column;
Expand All @@ -125,13 +151,20 @@ section {
margin: 10px 0;
}

.nav-links li a {
color: #fff;
transition: color 0.3s;

}

.hamburger {
display: block;
}

.nav-links.active {
display: flex;
}

}

/* ===================================================
Expand Down
7 changes: 6 additions & 1 deletion css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -201,13 +201,18 @@ body.dark header.navbar {
}

body.dark nav ul li a {
color: rgb(201, 238, 99);
/* color: rgb(201, 238, 99); */
/* color: #e0e0e0; */
}

body.dark nav ul li a:hover {
color: #ff9800;
}

body.dark .hamburger {
color: #000;
}

body.dark #experience,
body.dark #skills,
body.dark #projects {
Expand Down
4 changes: 4 additions & 0 deletions css/services.css
Original file line number Diff line number Diff line change
Expand Up @@ -281,4 +281,8 @@ body.dark #services-offer {
justify-content: center;
width: 100%;
/* margin-top: 10px; */
}

body.dark .hamburger {
color: #000;
}
5 changes: 4 additions & 1 deletion expertise.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@
<div>
<a href="index.html" class="brand">
<img src="/images/logo.jpeg" alt="Brand Logo" class="logo">
<span class="brand-name">Vimal Tech</span>
<span class="brand-name">
<span class="brand-name-vimal">Vimal</span>
<span class="brand-name-tech">Tech</span>
</span>
</a>
</div>

Expand Down
9 changes: 6 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@
<div>
<a href="index.html" class="brand">
<img src="/images/logo.jpeg" alt="Brand Logo" class="logo">
<span class="brand-name">Vimal Tech</span>
<span class="brand-name">
<span class="brand-name-vimal">Vimal</span>
<span class="brand-name-tech">Tech</span>
</span>
</a>
</div>

Expand All @@ -52,7 +55,7 @@
<li><a href="#experience">Experience</a></li>
<li><a href="#services-preview">Offering</a></li>
<li><a href="#live-projects">Live</a></li>
<li><a href="#visitor-counter">Visitors</a></li>
<!-- <li><a href="#visitor-counter">Visitors</a></li> -->
</ul>
</li>
<!-- New Services link -->
Expand Down Expand Up @@ -236,4 +239,4 @@ <h2>Visitor Theme Switcher</h2>
<script src="/js/main.js"></script>
</body>

</html>
</html>
5 changes: 4 additions & 1 deletion services.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@
<div>
<a href="index.html" class="brand">
<img src="/images/logo.jpeg" alt="Brand Logo" class="logo">
<span class="brand-name">Vimal Tech</span>
<span class="brand-name">
<span class="brand-name-vimal">Vimal</span>
<span class="brand-name-tech">Tech</span>
</span>
</a>
</div>

Expand Down