Dashboard-dev.865428fa.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. .dashboard[data-v-079ba3f8] {
  2. height: 100vh;
  3. }
  4. .header[data-v-079ba3f8] {
  5. display: flex;
  6. justify-content: space-between;
  7. align-items: center;
  8. background: #fff;
  9. border-bottom: 1px solid #e6e6e6;
  10. padding: 0 20px;
  11. }
  12. .header-left h1[data-v-079ba3f8] {
  13. margin: 0;
  14. color: #333;
  15. font-size: 20px;
  16. font-weight: 600;
  17. }
  18. .header-right[data-v-079ba3f8] {
  19. display: flex;
  20. align-items: center;
  21. }
  22. .user-info[data-v-079ba3f8] {
  23. display: flex;
  24. align-items: center;
  25. gap: 8px;
  26. cursor: pointer;
  27. padding: 8px;
  28. border-radius: 4px;
  29. transition: background-color 0.3s;
  30. }
  31. .user-info[data-v-079ba3f8]:hover {
  32. background-color: #f5f5f5;
  33. }
  34. .username[data-v-079ba3f8] {
  35. font-size: 14px;
  36. color: #333;
  37. }
  38. .sidebar[data-v-079ba3f8] {
  39. background: #fff;
  40. border-right: 1px solid #e6e6e6;
  41. }
  42. .sidebar-menu[data-v-079ba3f8] {
  43. border-right: none;
  44. }
  45. .main-content[data-v-079ba3f8] {
  46. background: #f5f5f5;
  47. padding: 20px;
  48. }
  49. .welcome-section[data-v-079ba3f8] {
  50. margin-bottom: 24px;
  51. padding: 20px;
  52. background: white;
  53. border-radius: 8px;
  54. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  55. }
  56. .welcome-section h2[data-v-079ba3f8] {
  57. margin: 0 0 8px 0;
  58. color: #333;
  59. font-size: 24px;
  60. font-weight: 600;
  61. }
  62. .welcome-section p[data-v-079ba3f8] {
  63. margin: 4px 0;
  64. color: #666;
  65. font-size: 14px;
  66. }
  67. .feature-grid[data-v-079ba3f8] {
  68. display: grid;
  69. grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  70. gap: 16px;
  71. margin-bottom: 24px;
  72. }
  73. .feature-card[data-v-079ba3f8] {
  74. cursor: pointer;
  75. transition: transform 0.2s, box-shadow 0.2s;
  76. }
  77. .feature-card[data-v-079ba3f8]:hover {
  78. transform: translateY(-2px);
  79. box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  80. }
  81. .feature-content[data-v-079ba3f8] {
  82. text-align: center;
  83. padding: 20px;
  84. }
  85. .feature-content h3[data-v-079ba3f8] {
  86. margin: 16px 0 8px 0;
  87. color: #333;
  88. font-size: 18px;
  89. font-weight: 600;
  90. }
  91. .feature-content p[data-v-079ba3f8] {
  92. margin: 0;
  93. color: #666;
  94. font-size: 14px;
  95. }
  96. .info-card[data-v-079ba3f8] {
  97. margin-bottom: 24px;
  98. }
  99. .info-content p[data-v-079ba3f8] {
  100. margin: 8px 0;
  101. color: #333;
  102. }
  103. .info-content h4[data-v-079ba3f8] {
  104. margin: 16px 0 8px 0;
  105. color: #333;
  106. }
  107. .info-content ul[data-v-079ba3f8] {
  108. margin: 8px 0;
  109. padding-left: 20px;
  110. }
  111. .info-content li[data-v-079ba3f8] {
  112. margin: 4px 0;
  113. color: #666;
  114. }