-
-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enabling dark mode #56
base: main
Are you sure you want to change the base?
Conversation
Removed height assigned and then it auto adjusts the div container...
Setting Navbar a different background image named "bg.png" using CSS property(Pseudo selector) for a better UI and adjusting fonts, logo and color
…olor in addition with an attribute to change opacity. Changes this to RBGA instead of RGB, RBGA expects an alpha value that represents opacity and changed the opacity value to a decimal. You can use percentages for RGB/RGBA opacities, but it can cause issues for some browsers, which is why I changed it to the decimal equivalent of 95%. Changed some minor formatting to improve readability
Dark mode addition to website.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice, it looks good so far! I think we can go and improve the events/footer section later, I can take a look!
I made some minor change suggestions, mostly based on extra newlines / clarifying comments in some places.
For now, if you resolve any merge conflicts and fix those changes, I'll take another look and then merge it :D. Thank you so much!
{ | ||
"liveServer.settings.port": 5501 | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
{ | |
"liveServer.settings.port": 5501 | |
} |
I think vscode just added this for whatever reason, you can delete it.
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
|
||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
|
||
/*a.main {*/ | ||
/* background-color: #E07A5F;*/ | ||
/* color: #3D405B;*/ | ||
/* font-family: 'Times New Roman', Times, serif;*/ | ||
/* border-radius: 10pt 10pt 10pt 10pt;*/ | ||
/* padding: 10pt;*/ | ||
/* font-size: 3vw;*/ | ||
/* text-decoration: none;*/ | ||
/* transition: padding 1s;*/ | ||
/* overflow: hidden;*/ | ||
/* box-shadow: 2px 2px #3D405B;*/ | ||
/*}*/ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/*a.main {*/ | |
/* background-color: #E07A5F;*/ | |
/* color: #3D405B;*/ | |
/* font-family: 'Times New Roman', Times, serif;*/ | |
/* border-radius: 10pt 10pt 10pt 10pt;*/ | |
/* padding: 10pt;*/ | |
/* font-size: 3vw;*/ | |
/* text-decoration: none;*/ | |
/* transition: padding 1s;*/ | |
/* overflow: hidden;*/ | |
/* box-shadow: 2px 2px #3D405B;*/ | |
/*}*/ | |
|
||
/* Setting Navbar a different background image using Pseudoselector named "bg.png" for a better UI and adjusting fonts, logo and color */ | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
text-align: left; | ||
} | ||
|
||
/* hmaburger setup */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/* hmaburger setup */ | |
/* hamburger setup */ |
|
||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
|
||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dark mode addition, but there is an issue that can't apply dark mode to 'events' and "footer" section.
Please look into it and review the rest added..