index.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. :root {
  2. --zIndex-dialog: 9999;
  3. --default-bgc: #f2f4f7;
  4. --v-primary-base: #00897B;
  5. --v-error-base: #fe574a;
  6. --v-primary-lighten1: #26A69A;
  7. --v-primary-lighten2: #4DB6AC;
  8. --v-primary-lighten3: #80CBC4;
  9. --v-primary-lighten4: #B2DFDB;
  10. --default-text: #666;
  11. }
  12. // 长按钮
  13. .buttons {
  14. height: 36px;
  15. width: 224px;
  16. }
  17. // 短按钮
  18. .half-button {
  19. height: 36px;
  20. width: 88px;
  21. }
  22. // 默认宽度
  23. .default-width {
  24. width: 1184px;
  25. min-width: 1184px;
  26. max-width: 1184px;
  27. margin: 0 auto;
  28. // align-items: center;
  29. }
  30. // 高亮
  31. .default-active {
  32. color: var(--v-primary-base) !important;
  33. }
  34. .border-bottom-dashed {
  35. border-bottom: 1px dashed #ccc;
  36. }
  37. .white-bgc {
  38. background-color: #fff;
  39. }
  40. .ellipsis {
  41. white-space: nowrap;
  42. text-overflow: ellipsis;
  43. overflow: hidden;
  44. }
  45. .vline {
  46. display: inline-block;
  47. width: 1px;
  48. height: 10px;
  49. vertical-align: middle;
  50. background-color: #e0e0e0;
  51. margin: 0 10px;
  52. }
  53. // 个人简历
  54. .resume-box {
  55. border-radius: 5px;
  56. padding: 20px 30px;
  57. background-color: #fff;
  58. }
  59. .resume-header {
  60. display: flex;
  61. justify-content: space-between;
  62. align-items: center;
  63. height: 36px;
  64. }
  65. .resume-title {
  66. font-weight: 700;
  67. font-size: 18px;
  68. border-left: 5px solid #00897B;
  69. padding-left: 12px;
  70. line-height: 17px;
  71. }