Angular LMS app
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
Questo repository è archiviato. Puoi vedere i file e clonarli, ma non puoi effettuare richieste di pushj o aprire problemi/richieste di pull.
 
 
 
 

199 righe
3.6 KiB

  1. .header-bar {
  2. display: flex;
  3. align-items: center;
  4. height: 60px;
  5. position: relative;
  6. padding: 0 5%;
  7. img {
  8. width: 35px;
  9. height: 35px;
  10. border-radius: 50%;
  11. overflow: hidden;
  12. }
  13. .icon {
  14. width: 20px;
  15. height: 20px;
  16. fill: white;
  17. }
  18. button {
  19. margin-left: 25px;
  20. border: 0px;
  21. background-color: transparent;
  22. &.profile-button {
  23. margin-left: 0;
  24. margin-right: auto;
  25. }
  26. }
  27. }
  28. .video-section {
  29. position: relative;
  30. text-align: center;
  31. background-color: var(--dark-grey);
  32. height: 30vh;
  33. width: 90%;
  34. margin: 10px auto;
  35. border-radius: 5px;
  36. display: flex;
  37. align-items: center;
  38. justify-content: center;
  39. color: white;
  40. position: sticky;
  41. position: -webkit-sticky;
  42. top: 0;
  43. z-index: 1;
  44. .tutor {
  45. position: absolute;
  46. left: 10px;
  47. bottom: 10px;
  48. color: white;
  49. img {
  50. width: 20px;
  51. height: 20px;
  52. border-radius: 50%;
  53. margin-right: 5px;
  54. vertical-align: middle;
  55. overflow: hidden;
  56. }
  57. span {
  58. font-size: 12px;
  59. }
  60. }
  61. h2 {
  62. font-size: 20px;
  63. margin-bottom: 5px;
  64. }
  65. p {
  66. font-size: 16px;
  67. }
  68. .counter {
  69. font-size: 28px;
  70. font-weight: 500;
  71. letter-spacing: 1px;
  72. }
  73. }
  74. .subject-list {
  75. position: relative;
  76. width: 88%;
  77. margin: 0 auto;
  78. list-style: none;
  79. header {
  80. color: var(--black);
  81. h5 {
  82. font-size: 14px;
  83. margin-top: 30px;
  84. font-weight: 500;
  85. }
  86. &:first-child h5 {
  87. margin-top: 20px;
  88. }
  89. }
  90. li {
  91. background-color: white;
  92. border-radius: 15px;
  93. overflow: hidden;
  94. display: flex;
  95. align-items: center;
  96. padding: 15px 10px;
  97. margin-top: 15px;
  98. box-shadow: 0px 0px 5px -2px var(--black);
  99. justify-content: space-between;
  100. position: relative;
  101. &::before {
  102. content: '';
  103. position: absolute;
  104. left: 0;
  105. top: 0;
  106. width: 7px;
  107. height: 100%;
  108. background-color: transparent;
  109. }
  110. &.attended::before {
  111. background-color: var(--teal-green);
  112. }
  113. &.absent::before {
  114. background-color: rgba(red, 0.5);
  115. }
  116. &.late::before {
  117. background-color: rgba(orange, 0.5);
  118. }
  119. }
  120. .schedule {
  121. width: 80px;
  122. padding: 0 5px;
  123. text-align: center;
  124. }
  125. .subject {
  126. width: calc(100% - 180px);
  127. border-left: 1px solid #cecece;
  128. padding-left: 15px;
  129. overflow: hidden;
  130. p {
  131. margin-top: 10px;
  132. }
  133. }
  134. .view-button {
  135. height: 33px;
  136. border-radius: 5px;
  137. border: 0px;
  138. background-color: var(--teal-green);
  139. color: white;
  140. font-size: 14px;
  141. width: 80px;
  142. }
  143. label {
  144. font-size: 16px;
  145. color: var(--black);
  146. font-weight: 500;
  147. }
  148. p {
  149. font-size: 13px;
  150. color: var(--dark-grey);
  151. margin-top: 2px;
  152. white-space: nowrap;
  153. text-overflow: ellipsis;
  154. overflow: hidden;
  155. img {
  156. width: 20px;
  157. height: 20px;
  158. border-radius: 50%;
  159. overflow: hidden;
  160. object-fit: cover;
  161. object-position: top;
  162. vertical-align: middle;
  163. }
  164. span {
  165. vertical-align: middle;
  166. margin-left: 3px;
  167. }
  168. }
  169. }