StoryBook

This commit is contained in:
huanqing.shao
2019-09-01 10:36:53 +08:00
parent a05068d15c
commit deaa55d632
9 changed files with 780 additions and 32 deletions

View File

@ -3,4 +3,31 @@
}
p img {
border: 1px solid #d7dae2;
}
}
.noselect {
-moz-user-select: -moz-none;
-moz-user-select: none;
-o-user-select:none;
-khtml-user-select:none;
-webkit-user-select:none;
-ms-user-select:none;
user-select:none;
}
/* */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
/* +*/
::-webkit-scrollbar-track {
box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
border-radius: 10px;
}
/* +*/
::-webkit-scrollbar-thumb {
border-radius: 10px;
box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.42);
background-color: rgba(0, 0, 0, 0.25);
}