Skip to content

Commit

Permalink
Merge pull request #1025 from kashnx/structure
Browse files Browse the repository at this point in the history
Restructured Directory and Removed Unnecessary Comments
  • Loading branch information
anuragverma108 authored May 29, 2024
2 parents de2cac8 + 614dab4 commit ff4df3b
Show file tree
Hide file tree
Showing 22 changed files with 159 additions and 685 deletions.
128 changes: 0 additions & 128 deletions CODE_OF_CONDUCT.md

This file was deleted.

File renamed without changes.
File renamed without changes.
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

1 change: 0 additions & 1 deletion assets/css/Available.css
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ top: 120px;
h2.section-title {
font-family: 'Philosopher', sans-serif;
color: hsl(203, 30%, 26%);
sss;
font-size: 3em;
}

Expand Down
8 changes: 1 addition & 7 deletions assets/html/styles/aboutus.css → assets/css/aboutus.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,7 @@
}

.dropdown-menu {
/* display: none;
position: absolute;
top: calc(100% + 5px);
left: 0;
background-color: var(--white);
padding: 10px;
border-radius: 5px; */

display: none;
position: absolute;
background-color: #fff;
Expand Down
87 changes: 12 additions & 75 deletions assets/css/forgot-pass.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,77 +34,8 @@
}

/* nav bar div */
.navbar{

background-color:#fff;
padding: 1%;
border-radius: 8px;
/* margin-bottom: 30px; */
margin: 1.5rem 12rem 1.5rem 12rem;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;

}

nav{
display: flex;
}

nav a{
color: hsl(203, 30%, 26%);
display: inline-block;
text-decoration: none;
padding: 0px 8px 0px 8px;
font-size: 1.2rem;
font-family: var(--ff-poppins);
margin-right: 3rem;
}

nav a {
-webkit-transition: -webkit-transform 0.3s;
transition: -webkit-transform 0.3s;
-o-transition: transform 0.3s;
transition: transform 0.3s;
transition: transform 0.3s, -webkit-transform 0.3s;
}

nav a{
position: relative;
color: hsl(200, 11%, 22%);
line-height: 2;
transition: all 0.15s ease;
}

nav a {
position: relative;
color: inherit;
text-decoration: none; /* Remove default underline */
}

nav a::after {
content: '';
position: absolute;
left: 0;
bottom: -2px; /* Adjust position below the text */
width: 0;
height: 2px; /* Adjust height of the underline */
background-color: hsl(357, 37%, 62%);
transition: width 0.3s ease;
/* from style.css */

}

nav a:is(:hover, :focus)::after {
width: 100%;
}

nav a:is(:hover , :focus){
color: hsl(357, 37%, 62%);
text-shadow: 2px 2px 4px hsl(304, 14%, 46%);
font-weight: 500;
}

body {
background-color: #f5ebe6;
padding: 1px;
Expand All @@ -113,6 +44,11 @@ body {
}

/* intro to page */

.bookworms{
margin-top:200px;
margin-bottom: 50px;
}
.bookworm{
font-family: var(--ff-philosopher);
color: rgb(247, 150, 150);
Expand Down Expand Up @@ -197,6 +133,7 @@ body {
width: 400px;
height: 30px;
margin-top: 0px;
width: 90%; /* Make the input full width */
}

/* Enter email */
Expand All @@ -220,7 +157,7 @@ body {


/* submit button */
button {
.submit {
font-family: Raleway;
width:400px;
height: 30px;
Expand All @@ -234,6 +171,8 @@ body {
cursor: pointer;
transition: 0.25s ease;
box-shadow: 1px 1px 10px 3px #24004628;
border-radius: 4px;
font-size: larger;

}

Expand All @@ -249,13 +188,11 @@ body {
margin: 10% auto; /* Adjust as needed */
}

.input[type="email"] {
width: 90%; /* Make the input full width */
}

button {
.submit {
width: 90%; /* Make the button full width */
margin: 12px auto;

}
}

Expand Down
File renamed without changes.
Loading

0 comments on commit ff4df3b

Please sign in to comment.