23 lines
422 B
CSS
23 lines
422 B
CSS
#dark-mode-btn {
|
|
position: fixed;
|
|
right: 15px;
|
|
top: 100px;
|
|
width: 35px;
|
|
height: 35px;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
cursor: pointer;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
transition: background-image .15s ease-in-out .15s;
|
|
}
|
|
|
|
.dark-logo {
|
|
background-image: url('sun.svg');
|
|
}
|
|
|
|
.light-logo {
|
|
background-image: url('moon.svg');
|
|
} |