1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- .drawCur {
- cursor: url(../../static/images/cur/draw.cur), auto;
- }
- .measureCur {
- cursor: url(../../static/images/cur/measure.cur), auto;
- }
- html,
- body {
- background-color: black;
- width: 100%;
- height: 100%;
- margin: 0;
- padding: 0;
- overflow: hidden;
- color: #eee;
- }
- #loadingbar {
- bottom: 0;
- left: 0;
- margin: auto;
- position: absolute;
- right: 0;
- top: 0;
- z-index: 999999;
- }
- /* 滚动条整体样式(高宽分别对应横竖滚动条的尺寸) */
- body::-webkit-scrollbar {
- width: 10px;
- height: 10px;
- }
- /* 滚动条里面小方块 */
- body::-webkit-scrollbar-thumb {
- border-radius: 10px;
- -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
- background: rgba(85, 229, 38, 0.71);
- }
- /* 滚动条里面轨道 */
- body::-webkit-scrollbar-track {
- -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
- border-radius: 10px;
- background: #2a4fd1b3;
- }
- /* 滚动条整体样式(高宽分别对应横竖滚动条的尺寸) */
- div::-webkit-scrollbar {
- width: 10px;
- height: 10px;
- }
- /* 滚动条里面小方块 */
- div::-webkit-scrollbar-thumb {
- border-radius: 10px;
- -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
- background: rgba(85, 229, 38, 0.71);
- }
- /* 滚动条里面轨道 */
- div::-webkit-scrollbar-track {
- -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
- border-radius: 10px;
- background: #2a4fd1b3;
- }
|