Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

project-page.component.scss 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. .independent-project-page {
  2. height: 100%;
  3. display: flex;
  4. flex-direction: column;
  5. .loading, .error {
  6. display: flex;
  7. flex-direction: column;
  8. align-items: center;
  9. justify-content: center;
  10. height: 100%;
  11. padding: 2rem;
  12. text-align: center;
  13. .error-icon {
  14. font-size: 48px;
  15. height: 48px;
  16. width: 48px;
  17. color: #f44336;
  18. margin-bottom: 1rem;
  19. }
  20. h3 {
  21. margin: 0.5rem 0;
  22. color: #333;
  23. }
  24. p {
  25. color: #666;
  26. margin-bottom: 1.5rem;
  27. max-width: 400px;
  28. }
  29. }
  30. .independent-page-header {
  31. padding: 1rem 1.5rem;
  32. background: white;
  33. border-bottom: 1px solid #e0e0e0;
  34. display: flex;
  35. align-items: center;
  36. justify-content: space-between;
  37. .header-left {
  38. display: flex;
  39. align-items: center;
  40. gap: 1rem;
  41. .back-button {
  42. margin-right: 0.5rem;
  43. }
  44. .project-info {
  45. display: flex;
  46. flex-direction: column;
  47. gap: 0.25rem;
  48. .project-title {
  49. margin: 0;
  50. font-size: 1.25rem;
  51. font-weight: 500;
  52. color: #333;
  53. }
  54. .project-meta {
  55. display: flex;
  56. align-items: center;
  57. gap: 1rem;
  58. font-size: 0.875rem;
  59. .project-id {
  60. color: #666;
  61. background: #f5f5f5;
  62. padding: 0.25rem 0.5rem;
  63. border-radius: 4px;
  64. }
  65. .project-status {
  66. display: flex;
  67. align-items: center;
  68. gap: 0.25rem;
  69. color: #2196f3;
  70. .status-icon {
  71. font-size: 0.75rem;
  72. height: 0.75rem;
  73. width: 0.75rem;
  74. }
  75. }
  76. }
  77. }
  78. }
  79. .header-right {
  80. .connection-status {
  81. display: flex;
  82. align-items: center;
  83. gap: 0.5rem;
  84. padding: 0.5rem 0.75rem;
  85. background: #f5f5f5;
  86. border-radius: 4px;
  87. font-size: 0.875rem;
  88. .connected {
  89. color: #4caf50;
  90. }
  91. .disconnected {
  92. color: #f44336;
  93. }
  94. .status-text {
  95. color: #666;
  96. }
  97. }
  98. }
  99. }
  100. .independent-project-content {
  101. flex: 1;
  102. overflow: auto;
  103. display: flex;
  104. flex-direction: column;
  105. }
  106. }