Created
March 23, 2021 01:48
-
-
Save Tanu-N-Prabhu/3056c32e9839f9be7b00aeb1157c9d61 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
.body { | |
padding: 10px; | |
} | |
.container { | |
padding: 25px; | |
background-color: #FFAA80; | |
width: 100%; | |
justify-content: center; | |
align-items: center; | |
border-radius: 25px; | |
} | |
.outer { | |
padding: 25px; | |
width: 100%; | |
justify-content: center; | |
align-items: center; | |
border-radius: 25px; | |
} | |
h1, h3, h4 { | |
color: white; | |
} | |
/* CSS styling for Dark-mode and light mode toggle */ | |
i.toggler { | |
color: white; | |
float: right; | |
font-size: 20px; | |
} | |
.dark-mode { | |
background-color: black; | |
} | |
.dark-mode i.toggler { | |
color: orange; | |
} | |
.dark-mode .container { | |
background-color: white; | |
} | |
.dark-mode h1, .dark-mode h3, .dark-mode h4 { | |
color: black; | |
} | |
/* End of CSS Styling for dark and light mode toggle */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment