Skip to content

Instantly share code, notes, and snippets.

@Tanu-N-Prabhu
Created March 23, 2021 01:48
Show Gist options
  • Save Tanu-N-Prabhu/3056c32e9839f9be7b00aeb1157c9d61 to your computer and use it in GitHub Desktop.
Save Tanu-N-Prabhu/3056c32e9839f9be7b00aeb1157c9d61 to your computer and use it in GitHub Desktop.
.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