-
Notifications
You must be signed in to change notification settings - Fork 277
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 #18 from yashksaini-coder/images
Fixes Images (#1) & Restructure repo dir (#17)
- Loading branch information
Showing
29 changed files
with
768 additions
and
768 deletions.
There are no files selected for viewing
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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,36 +1,36 @@ | ||
/* General Reset */ | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
/* Body Styling */ | ||
body { | ||
font-family: 'Arial', sans-serif; | ||
background: linear-gradient(135deg, #74ebd5, #ACB6E5); | ||
height: 100vh; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
/* Dashboard Container */ | ||
.dashboard-container { | ||
background-color: white; | ||
padding: 40px; | ||
border-radius: 12px; | ||
text-align: center; | ||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
.dashboard-container h1 { | ||
margin-bottom: 20px; | ||
font-size: 24px; | ||
color: #333; | ||
} | ||
|
||
.dashboard-container p { | ||
font-size: 16px; | ||
color: #666; | ||
} | ||
/* General Reset */ | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
/* Body Styling */ | ||
body { | ||
font-family: 'Arial', sans-serif; | ||
background: linear-gradient(135deg, #74ebd5, #ACB6E5); | ||
height: 100vh; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
/* Dashboard Container */ | ||
.dashboard-container { | ||
background-color: white; | ||
padding: 40px; | ||
border-radius: 12px; | ||
text-align: center; | ||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
.dashboard-container h1 { | ||
margin-bottom: 20px; | ||
font-size: 24px; | ||
color: #333; | ||
} | ||
|
||
.dashboard-container p { | ||
font-size: 16px; | ||
color: #666; | ||
} |
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,117 +1,117 @@ | ||
/* General Reset */ | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
/* Body Styling */ | ||
body { | ||
font-family: 'Arial', sans-serif; | ||
background: #e8f5e9; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
} | ||
|
||
/* Dashboard Container */ | ||
.dashboard-container { | ||
background-color: white; | ||
padding: 40px; | ||
border-radius: 15px; | ||
text-align: center; | ||
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); | ||
width: 400px; | ||
} | ||
|
||
.dashboard-container h1 { | ||
font-size: 28px; | ||
color: #388e3c; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.dashboard-container p { | ||
font-size: 18px; | ||
color: #555; | ||
margin-bottom: 20px; | ||
} | ||
|
||
#working-status { | ||
margin-top: 20px; | ||
font-size: 16px; | ||
color: #00796b; | ||
} | ||
|
||
/* Availability Toggle */ | ||
.availability-toggle { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
gap: 20px; | ||
} | ||
|
||
/* Toggle Switch Styling */ | ||
.switch { | ||
position: relative; | ||
display: inline-block; | ||
width: 60px; | ||
height: 34px; | ||
} | ||
|
||
.switch input { | ||
opacity: 0; | ||
width: 0; | ||
height: 0; | ||
} | ||
|
||
.slider { | ||
position: absolute; | ||
cursor: pointer; | ||
top: 0; | ||
left: 0; | ||
right: 0; | ||
bottom: 0; | ||
background-color: #ccc; | ||
transition: 0.4s; | ||
border-radius: 34px; | ||
} | ||
|
||
.slider:before { | ||
position: absolute; | ||
content: ""; | ||
height: 26px; | ||
width: 26px; | ||
left: 4px; | ||
bottom: 4px; | ||
background-color: white; | ||
transition: 0.4s; | ||
border-radius: 50%; | ||
} | ||
|
||
input:checked + .slider { | ||
background-color: #388e3c; | ||
} | ||
|
||
input:checked + .slider:before { | ||
transform: translateX(26px); | ||
} | ||
|
||
/* Round Toggle */ | ||
.slider.round { | ||
border-radius: 34px; | ||
} | ||
|
||
.slider.round:before { | ||
border-radius: 50%; | ||
} | ||
|
||
.toggle-container { | ||
margin-top: 20px; /* Adds space between the toggle and other elements */ | ||
display: flex; | ||
align-items: center; /* Vertically aligns the elements */ | ||
} | ||
|
||
.toggle-container p { | ||
margin-left: 10px; /* Adds space between the toggle slider and "Toggle Availability" text */ | ||
} | ||
/* General Reset */ | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
/* Body Styling */ | ||
body { | ||
font-family: 'Arial', sans-serif; | ||
background: #e8f5e9; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
} | ||
|
||
/* Dashboard Container */ | ||
.dashboard-container { | ||
background-color: white; | ||
padding: 40px; | ||
border-radius: 15px; | ||
text-align: center; | ||
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); | ||
width: 400px; | ||
} | ||
|
||
.dashboard-container h1 { | ||
font-size: 28px; | ||
color: #388e3c; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.dashboard-container p { | ||
font-size: 18px; | ||
color: #555; | ||
margin-bottom: 20px; | ||
} | ||
|
||
#working-status { | ||
margin-top: 20px; | ||
font-size: 16px; | ||
color: #00796b; | ||
} | ||
|
||
/* Availability Toggle */ | ||
.availability-toggle { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
gap: 20px; | ||
} | ||
|
||
/* Toggle Switch Styling */ | ||
.switch { | ||
position: relative; | ||
display: inline-block; | ||
width: 60px; | ||
height: 34px; | ||
} | ||
|
||
.switch input { | ||
opacity: 0; | ||
width: 0; | ||
height: 0; | ||
} | ||
|
||
.slider { | ||
position: absolute; | ||
cursor: pointer; | ||
top: 0; | ||
left: 0; | ||
right: 0; | ||
bottom: 0; | ||
background-color: #ccc; | ||
transition: 0.4s; | ||
border-radius: 34px; | ||
} | ||
|
||
.slider:before { | ||
position: absolute; | ||
content: ""; | ||
height: 26px; | ||
width: 26px; | ||
left: 4px; | ||
bottom: 4px; | ||
background-color: white; | ||
transition: 0.4s; | ||
border-radius: 50%; | ||
} | ||
|
||
input:checked + .slider { | ||
background-color: #388e3c; | ||
} | ||
|
||
input:checked + .slider:before { | ||
transform: translateX(26px); | ||
} | ||
|
||
/* Round Toggle */ | ||
.slider.round { | ||
border-radius: 34px; | ||
} | ||
|
||
.slider.round:before { | ||
border-radius: 50%; | ||
} | ||
|
||
.toggle-container { | ||
margin-top: 20px; /* Adds space between the toggle and other elements */ | ||
display: flex; | ||
align-items: center; /* Vertically aligns the elements */ | ||
} | ||
|
||
.toggle-container p { | ||
margin-left: 10px; /* Adds space between the toggle slider and "Toggle Availability" text */ | ||
} |
Oops, something went wrong.