Skip to content
Open
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
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
}
]
}
69 changes: 31 additions & 38 deletions navigateToPages/faq.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

85 changes: 34 additions & 51 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,58 +43,41 @@ html,body{
height: auto;
}


/*navbar*/

.navbar-list {
list-style-type: none;
margin: 0;
padding: 0;
color: white;
}

.navbar-list li {
display: inline-block;
color: white;
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
.header {
background-color: darkslategray; /* Change to your desired dark color */
}

.navbar-list li {
color: white; /* Ensure text is readable in dark mode */
}
}


/*-----navbar------*/
.navbar{
display: flex;
align-items: center;
gap: 40px;
}
.navbar-list{
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
}

.navbar-list li a{
display: inline-block;
font-size: 15px;
text-decoration: none;
}
.navbar-list li a:hover{
transform: scale(1.3); /* Adjust the scale value as needed */
transition: transform 0.3s ease; /* Smooth zoom-in effect */
color: black;
text-decoration: none;
}

.navbar {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
}

.navbar-list {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
justify-content: space-evenly;
flex-grow: 1;
}

.navbar-list li {
flex: 1;
text-align: center;
}

.navbar-list li a {
font-size: 18px;
text-decoration: none;
color: white;
padding: 10px 0;
}

.navbar-list li a:hover {
transform: scale(1.1);
transition: transform 0.3s ease;
color: black;
}

header{
display: flex;
justify-content: space-between;
Expand Down