Skip to content

Commit

Permalink
Merge pull request #13 from JeelDobariya38/Dev
Browse files Browse the repository at this point in the history
improved website
  • Loading branch information
JeelDobariya38 authored Jan 8, 2024
2 parents a2eb4f7 + ad41174 commit 2c4b8ef
Show file tree
Hide file tree
Showing 8 changed files with 447 additions and 675 deletions.
Binary file added Graphics/hero-section-photo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions StyleSheets/animation.css
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%;}
}
233 changes: 0 additions & 233 deletions StyleSheets/responsive.css

This file was deleted.

84 changes: 84 additions & 0 deletions StyleSheets/standby.css
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
}
Loading

0 comments on commit 2c4b8ef

Please sign in to comment.