mirror of
https://github.com/0dayCTF/reverse-shell-generator.git
synced 2024-12-19 19:36:10 +00:00
b25bd20ef3
Dark & "Light" mode added via a toggle button.
23 lines
518 B
CSS
23 lines
518 B
CSS
[data-theme="dark"] {
|
|
background-color: pink !important;
|
|
}
|
|
|
|
[data-theme="dark"] .bg-light {
|
|
background-color: #333 !important;
|
|
}
|
|
|
|
[data-theme="dark"] .bg-white {
|
|
background-color: #000 !important;
|
|
}
|
|
|
|
[data-theme="dark"] .rainbow {
|
|
font-family: 'Pacifico', cursive;
|
|
text-shadow: 2px 2px 4px #000000;
|
|
font-size:40px;
|
|
-webkit-animation: rainbow 5s infinite;
|
|
-ms-animation: rainbow 5s infinite;
|
|
animation: rainbow 5s infinite;
|
|
font-family: ComicMono;
|
|
src: url(ComicMono.ttf);
|
|
}
|