dark-mode.css 422 字节
Newer Older
W
wizardforcel 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
#dark-mode-btn {
	position: fixed;
	right: 20px;
	top: 100px;
	width: 25px;
	height: 25px;
	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');
}