1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- * {
- padding: 0;
- margin: 0;
- border: 0;
- box-sizing: border-box;
- }
- #app {
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- color: #333;
- min-height: 100vh;
- }
- body {
- user-select: none;
- background-color: #f1f5ff;
- }
- @font-face {
- font-family: 'dotfont';
- /* Project id */
- src: url('../common/text-security-disc.woff') format('woff');
- }
- .cr-ellipsis {
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .fade-enter-active,
- .fade-leave-active {
- transition: opacity 0.5s ease;
- }
- .fade-enter-from,
- .fade-leave-to {
- opacity: 0;
- }
- ::-webkit-scrollbar {
- width: 8px;
- height: 12px;
- background-color: #fff;
- }
- ::-webkit-scrollbar-thumb {
- display: block;
- min-height: 12px;
- min-width: 8px;
- border-radius: 6px;
- background-color: rgb(217, 217, 217);
- }
- ::-webkit-scrollbar-thumb:hover {
- display: block;
- min-height: 12px;
- min-width: 8px;
- border-radius: 6px;
- background-color: rgb(159, 159, 159);
- }
|