-
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.
Merge pull request #13 from JeelDobariya38/Dev
improved website
- Loading branch information
Showing
8 changed files
with
447 additions
and
675 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
@keyframes left-slide { | ||
0% {transform: translateX(-600px); opacity: 0%;} | ||
100% {transform: translateX(0px); opacity: 100%;} | ||
} | ||
|
||
@keyframes right-slide { | ||
0% {transform: translateX(600px); opacity: 0%;} | ||
100% {transform: translateX(0px); opacity: 100%;} | ||
} |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
* { | ||
margin: 0px; | ||
padding: 0px; | ||
box-sizing: border-box; | ||
} | ||
|
||
.light-theme { | ||
--headersection: #5910ad; | ||
--primary-color: #007ACC; | ||
--secondary-color: #7d2fd7; | ||
} | ||
|
||
.dark-theme { | ||
|
||
} | ||
|
||
:root { | ||
--scrollbar-bg: linear-gradient(to top left, rgb(0, 57, 255), rgb(239, 249, 255)); | ||
--scrollbar-bg-hover: linear-gradient(to top left, rgb(0, 0, 255), rgb(0, 232, 255)); | ||
} | ||
|
||
::-webkit-scrollbar { | ||
width: 5px; | ||
} | ||
|
||
::-webkit-scrollbar-thumb { | ||
background: var(--scrollbar-bg, #999); | ||
border-radius: 16px; | ||
} | ||
|
||
::-webkit-scrollbar-thumb:hover { | ||
background: var(--scrollbar-bg-hover, #555); | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
color: black; | ||
} | ||
|
||
body { | ||
background-color: var(--primary-color); | ||
font-family: Helvetica, sans-serif, Georgia; | ||
font-weight: 400; | ||
} | ||
|
||
.main-header { | ||
width: 100vw; | ||
position: fixed; | ||
top: 0; | ||
padding: 10px; | ||
background-color: var(--headersection); | ||
font-size: 1.5rem; | ||
} | ||
|
||
.main-header nav { | ||
display: flex; | ||
justify-content: space-between; | ||
} | ||
|
||
.main-header nav div { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
padding: 0px 12px; | ||
} | ||
|
||
.main-header nav div ul { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
list-style: none; | ||
} | ||
|
||
.main-header nav div ul li { | ||
margin: 12px; | ||
} | ||
|
||
.main-header nav div ul li a { | ||
color: #00000080 | ||
} | ||
|
||
.main-header nav div ul li a:hover { | ||
color: #000000 | ||
} |
Oops, something went wrong.