Angular LMS app
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
Це архівний репозитарій. Ви можете переглядати і клонувати файли, але не можете робити пуш або відкривати питання/запити.
 
 
 
 

142 рядки
2.6 KiB

  1. .page {
  2. height: 100vh;
  3. overflow: auto;
  4. padding-bottom: 100px;
  5. &::before {
  6. content: '';
  7. position: absolute;
  8. left: 0;
  9. top: 0;
  10. height: 40vh;
  11. width: 100%;
  12. background-color: var(--black);
  13. border-bottom-left-radius: 30px;
  14. border-bottom-right-radius: 30px;
  15. pointer-events: none;
  16. }
  17. }
  18. .upfold {
  19. width: 100%;
  20. color: white;
  21. position: relative;
  22. padding: 30px 10% 0 10%;
  23. h1 {
  24. font-size: 24px;
  25. font-weight: 400;
  26. margin-bottom: 20px;
  27. }
  28. p {
  29. font-size: 17px;
  30. }
  31. }
  32. .subject-list {
  33. position: relative;
  34. width: 80%;
  35. margin: 0 auto;
  36. list-style: none;
  37. header {
  38. color: var(--black);
  39. h5 {
  40. font-size: 16px;
  41. margin-top: 30px;
  42. font-weight: 500;
  43. }
  44. &:first-child {
  45. color: white;
  46. }
  47. }
  48. li {
  49. background-color: white;
  50. border-radius: 15px;
  51. overflow: hidden;
  52. display: flex;
  53. align-items: center;
  54. padding: 15px 10px;
  55. margin-top: 15px;
  56. box-shadow: 0px 0px 5px -2px var(--black);
  57. justify-content: space-between;
  58. position: relative;
  59. &::before {
  60. content: '';
  61. position: absolute;
  62. left: 0;
  63. top: 0;
  64. width: 7px;
  65. height: 100%;
  66. background-color: var(--teal-green);
  67. }
  68. }
  69. .schedule {
  70. width: 100px;
  71. padding: 0 5px;
  72. text-align: center;
  73. }
  74. .subject {
  75. width: calc(100% - 100px);
  76. border-left: 1px solid #cecece;
  77. padding-left: 15px;
  78. overflow: hidden;
  79. p {
  80. margin-top: 10px;
  81. }
  82. }
  83. label {
  84. font-size: 16px;
  85. color: var(--black);
  86. font-weight: 500;
  87. }
  88. p {
  89. font-size: 13px;
  90. color: var(--dark-grey);
  91. margin-top: 2px;
  92. white-space: nowrap;
  93. text-overflow: ellipsis;
  94. overflow: hidden;
  95. img {
  96. width: 20px;
  97. height: 20px;
  98. border-radius: 50%;
  99. overflow: hidden;
  100. object-fit: cover;
  101. object-position: top;
  102. vertical-align: middle;
  103. }
  104. span {
  105. vertical-align: middle;
  106. margin-left: 3px;
  107. }
  108. }
  109. }
  110. .start-button {
  111. position: fixed;
  112. width: 70%;
  113. height: 50px;
  114. box-shadow: 2px 2px 20px -5px var(--teal);
  115. color: white;
  116. background-color: var(--teal);
  117. border-radius: 10px;
  118. font-size: 14px;
  119. bottom: 20px;
  120. left: 15%;
  121. border: 0px;
  122. z-index: 1;
  123. }