Skip to content

Commit

Permalink
Merge pull request anuragverma108#2736 from Ishitva744/main
Browse files Browse the repository at this point in the history
Fixed login navbar style and forgot-pass toggle icon
  • Loading branch information
huamanraj authored Aug 3, 2024
2 parents 1102aef + 584e341 commit e557a22
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 8 deletions.
4 changes: 3 additions & 1 deletion assets/css/forgot-pass.css
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,9 @@ label {
box-shadow: 1px 1px 10px 3px #24004628;
text-align:center;
}

.dark-mode .container button {
margin: 12px auto;
}
button:hover {
background-color: rgb(255, 255, 255);
color: black;
Expand Down
14 changes: 12 additions & 2 deletions assets/css/login.css
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,18 @@ p {
text-decoration: none;
background-color: none;
}

.navbar-header {
.navbar-list a{
width: 100%;
display: flex;
justify-content: center;
position: relative;
font-size: 1.55rem;
color: var(--charcoal);
padding: 8px 12px;
line-height: 2;
transition: var(--transition-1);
}
.navbar-list {
width: 100%;
font-family: var(--ff-poppins);
font-size: 1.55rem;
Expand Down
2 changes: 1 addition & 1 deletion assets/html/forgot-pass.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<link rel="stylesheet" type="text/css" href="../css/forgot-pass.css">
<link rel="stylesheet" href="../css/preloader.css">
<link rel="stylesheet" href="./assets/css/MenuClick.css">

<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">

<script src="../js/scroll-reveal.js"></script>
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
Expand Down
8 changes: 4 additions & 4 deletions assets/html/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" />
<link
href="https://fonts.googleapis.com/css2?family=Philosopher:wght@400;700&family=Poppins:wght@400;500;600&display=swap"
rel="stylesheet" />
Expand All @@ -22,7 +22,7 @@
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://cdn.jsdelivr.net/gh/studio-freight/lenis@1.0.27/bundled/lenis.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
Expand Down Expand Up @@ -302,7 +302,6 @@

.navbar-link {
white-space: nowrap; /* Prevent text from wrapping to the next line */
display: inline-block; /* Ensure it stays inline */
background-color: none; /* Remove background color */
border: none; /* Remove border */
text-decoration: none; /* Remove text underline */
Expand All @@ -312,6 +311,7 @@
.navbar-list{
display: flex;
gap: 10px;
justify-content: center;
}
</style>
<body>
Expand All @@ -328,7 +328,7 @@

<ul class="navbar-list nav" style="border-radius: 5px;">
<a href="../../index.html" onclick="lenis.scrollTo('index.html');" class="logo" style="display:flex; background-color: none;">
<img src="../images/final.png" class="logopic" style=" width: 105px;">
<img src="../images/final.png" class="logopic" style=" width: 150px;">
</a>
<li class="navbar-item">
<a href="../../index.html" onclick="lenis.scrollTo('#home')" style="background-color: none;" class="navbar-link" data-nav-link><i
Expand Down

0 comments on commit e557a22

Please sign in to comment.