docsify-quick-page.css 801 字节
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 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
#prev-page-button {
	position:fixed;
	top:140px;
	width: 35px;
	height: 35px;
	right: 15px;
	background-color: transparent;
	background-image: url(emoji-up.svg);
	background-repeat: no-repeat;
    background-size: cover;
	border:0;
	-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	outline:none;
	cursor: pointer;
	transform: rotate(-90deg);
}

#next-page-button {
	position:fixed;
	top:180px;
	width:35px;
	height:35px;
	right:15px;
	background-color: transparent;
	background-image: url(emoji-down.svg);
	background-repeat: no-repeat;
    background-size: cover;
	border:0;
	-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	outline:none;
	cursor: pointer;
	transform: rotate(-90deg);
}