-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
more fixes
- Loading branch information
Showing
14 changed files
with
145 additions
and
122 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,66 +1,47 @@ | ||
/* src/components/layout/NavBar/NavBar.css */ | ||
/* Navbar styles */ | ||
.navbar { | ||
background-color: var(--primary-color); | ||
padding: var(--spacing-md) 0; | ||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
.navbar-container { | ||
color: var(--text-color); | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
max-width: 1200px; | ||
margin: 0 auto; | ||
padding: 0 var(--spacing-md); | ||
} | ||
|
||
.navbar-logo { | ||
display: flex; | ||
align-items: center; | ||
padding: var(--spacing-md) var(--spacing-lg); | ||
width: 100%; | ||
} | ||
|
||
.navbar-logo-image { | ||
height: 40px; | ||
width: auto; | ||
height: 30px; | ||
} | ||
|
||
.navbar-menu { | ||
display: flex; | ||
list-style-type: none; | ||
margin: 0; | ||
padding: 0; | ||
display: flex; | ||
} | ||
|
||
.navbar-item { | ||
margin-left: var(--spacing-md); | ||
margin-right: var(--spacing-lg); | ||
} | ||
|
||
.navbar-item:last-child { | ||
margin-right: 0; | ||
} | ||
|
||
.navbar-link { | ||
color: var(--text-color); | ||
text-decoration: none; | ||
font-weight: 500; | ||
transition: color var(--transition-speed) ease; | ||
} | ||
|
||
.navbar-link:hover { | ||
color: var(--accent-color); | ||
} | ||
|
||
.account-bubble { | ||
width: 32px; | ||
height: 32px; | ||
background-color: var(--accent-color); | ||
background-color: var(--secondary-color); | ||
color: var(--primary-color); | ||
border-radius: 50%; | ||
width: 30px; | ||
height: 30px; | ||
text-align: center; | ||
line-height: 30px; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
color: var(--primary-color); | ||
font-weight: bold; | ||
} | ||
|
||
@media (max-width: 768px) { | ||
.navbar-menu { | ||
display: none; /* Hide menu on small screens */ | ||
} | ||
/* Add styles for a mobile menu button here */ | ||
align-items: center; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,54 @@ | ||
@import 'variables.css'; | ||
|
||
html, body { | ||
width: 100vw; | ||
height: 100vh; | ||
min-width: 350px; | ||
overflow-y: overlay; | ||
body { | ||
font-family: var(--font-family); | ||
font-size: var(--font-size-md); | ||
color: var(--text-color); | ||
background-color: var(--background-color); | ||
line-height: 1.5; | ||
} | ||
|
||
h1, h2, h3, p { | ||
color: var(--text-color); | ||
h1, h2, h3, h4, h5, h6 { | ||
margin-bottom: var(--spacing-md); | ||
} | ||
|
||
h1 { font-size: var(--font-size-xl); } | ||
h2 { font-size: var(--font-size-lg); } | ||
|
||
main { | ||
@apply flex flex-col items-center w-full h-full; | ||
a { | ||
color: var(--accent-color); | ||
text-decoration: none; | ||
transition: color var(--transition-speed) ease; | ||
} | ||
|
||
a:hover { | ||
color: var(--secondary-color); | ||
} | ||
|
||
h2 { | ||
@apply p-5; | ||
button { | ||
cursor: pointer; | ||
font-size: var(--font-size-md); | ||
padding: var(--spacing-sm) var(--spacing-md); | ||
border: none; | ||
border-radius: var(--border-radius-sm); | ||
background-color: var(--accent-color); | ||
color: var(--text-color); | ||
transition: background-color var(--transition-speed) ease; | ||
} | ||
|
||
button:hover { | ||
background-color: var(--primary-color); | ||
} | ||
|
||
input, textarea, select { | ||
font-size: var(--font-size-md); | ||
padding: var(--spacing-sm); | ||
border: 1px solid var(--accent-color); | ||
border-radius: var(--border-radius-sm); | ||
background-color: var(--background-color); | ||
color: var(--text-color); | ||
} | ||
|
||
p { | ||
@apply p-1; | ||
.error-message { | ||
color: var(--error-color); | ||
font-size: var(--font-size-sm); | ||
margin-top: var(--spacing-xs); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.