Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

home.component.scss 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. .home-container {
  2. padding: 24px;
  3. max-width: 1200px;
  4. margin: 0 auto;
  5. }
  6. .toolbar {
  7. display: flex;
  8. justify-content: space-between;
  9. align-items: center;
  10. margin-bottom: 32px;
  11. }
  12. .toolbar h1 {
  13. margin: 0;
  14. font-size: 1.8rem;
  15. font-weight: 500;
  16. }
  17. .loading-state {
  18. text-align: center;
  19. padding: 60px 20px;
  20. color: #666;
  21. }
  22. .empty-state {
  23. text-align: center;
  24. padding: 80px 20px;
  25. color: #666;
  26. }
  27. .empty-icon {
  28. font-size: 72px;
  29. height: 72px;
  30. width: 72px;
  31. margin-bottom: 20px;
  32. color: #ccc;
  33. }
  34. .projects-grid {
  35. display: grid;
  36. grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  37. gap: 24px;
  38. }
  39. .project-card {
  40. height: 100%;
  41. display: flex;
  42. flex-direction: column;
  43. }
  44. .project-card mat-card-header {
  45. margin-bottom: 16px;
  46. }
  47. .agent-badge {
  48. display: inline-block;
  49. background: #e3f2fd;
  50. color: #1976d2;
  51. padding: 2px 8px;
  52. border-radius: 12px;
  53. font-size: 12px;
  54. margin-right: 8px;
  55. }
  56. .status-badge {
  57. display: inline-block;
  58. padding: 2px 8px;
  59. border-radius: 12px;
  60. font-size: 12px;
  61. }
  62. .status-requirement_document { background: #fff3e0; color: #f57c00; }
  63. .status-technical_document { background: #e8f5e8; color: #388e3c; }
  64. .status-code { background: #e3f2fd; color: #1976d2; }
  65. .status-test { background: #f3e5f5; color: #7b1fa2; }
  66. .status-release { background: #e8f5e8; color: #388e3c; }
  67. .project-description {
  68. color: #666;
  69. line-height: 1.5;
  70. margin-bottom: 16px;
  71. display: -webkit-box;
  72. -webkit-line-clamp: 3;
  73. -webkit-box-orient: vertical;
  74. overflow: hidden;
  75. }
  76. .project-meta {
  77. display: flex;
  78. gap: 16px;
  79. margin-bottom: 16px;
  80. color: #888;
  81. font-size: 14px;
  82. }
  83. .meta-item {
  84. display: flex;
  85. align-items: center;
  86. gap: 4px;
  87. }
  88. .meta-item mat-icon {
  89. font-size: 16px;
  90. height: 16px;
  91. width: 16px;
  92. }
  93. .log-preview {
  94. display: flex;
  95. align-items: center;
  96. gap: 8px;
  97. padding: 8px;
  98. background: #f5f5f5;
  99. border-radius: 4px;
  100. font-size: 12px;
  101. color: #666;
  102. }
  103. .log-preview mat-icon {
  104. font-size: 16px;
  105. height: 16px;
  106. width: 16px;
  107. }
  108. .log-text {
  109. flex: 1;
  110. overflow: hidden;
  111. text-overflow: ellipsis;
  112. white-space: nowrap;
  113. }
  114. mat-card-actions {
  115. margin-top: auto;
  116. padding: 16px;
  117. }
  118. .inline-spinner {
  119. display: inline-block;
  120. margin-right: 8px;
  121. vertical-align: middle;
  122. }