v-im.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. @charset "UTF-8";
  2. @import 'theme';
  3. * {
  4. padding: 0;
  5. margin: 0;
  6. box-sizing: border-box;
  7. font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
  8. }
  9. html {
  10. font-size: 62.5%;
  11. height: 100%;
  12. overflow: hidden;
  13. }
  14. body {
  15. font-size: 1.4rem;
  16. height: 100%;
  17. overflow: hidden;
  18. }
  19. body>div {
  20. height: 100%;
  21. }
  22. .v-im {
  23. width: 100%;
  24. height: 100%;
  25. display: flex;
  26. flex-direction: column;
  27. overflow-y: hidden;
  28. background-color: $color-main;
  29. box-shadow: $box-shadow 2px 2px 5px;
  30. }
  31. .pull-right {
  32. float: right;
  33. }
  34. .text-center {
  35. text-align: center;
  36. }
  37. *:focus {
  38. outline: none;
  39. }
  40. ::-webkit-scrollbar-track-piece {
  41. background-color: rgba(0, 0, 0, .15);
  42. }
  43. ::-webkit-scrollbar {
  44. width: 6px;
  45. height: 6px;
  46. border-radius: 4px;
  47. }
  48. ::-webkit-scrollbar-thumb {
  49. background-color: rgba(0, 0, 0, .2);
  50. background-clip: padding-box;
  51. min-height: 28px;
  52. border-radius: 4px;
  53. }
  54. ::-webkit-scrollbar-thumb:hover {
  55. background-color: rgba(0, 0, 0, .3);
  56. }
  57. .ivu-drawer-content {
  58. background: #f3f3f3 !important;
  59. }