Angular LMS app
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 

92 rivejä
1.7 KiB

  1. header {
  2. padding: 0 7%;
  3. color: white;
  4. font-size: 18px;
  5. position: relative;
  6. margin-top: 50px;
  7. &.level-header {
  8. font-size: 17px;
  9. color: var(--ash-black);
  10. font-weight: bold;
  11. letter-spacing: 1px;
  12. margin: 20px auto 0;
  13. &.whiten {
  14. color: white;
  15. }
  16. }
  17. }
  18. ul {
  19. list-style: none;
  20. width: 90%;
  21. margin: 0 auto;
  22. display: flex;
  23. align-items: stretch;
  24. justify-content: space-between;
  25. position: relative;
  26. flex-wrap: wrap;
  27. &.hidden {
  28. display: none;
  29. }
  30. li {
  31. width: 42vw;
  32. height: 37vw;
  33. padding: 15px;
  34. background-color: white;
  35. border-radius: 15px;
  36. margin-top: 6vw;
  37. box-shadow: 0px 0px 5px var(--light-grey);
  38. position: relative;
  39. }
  40. .details {
  41. position: absolute;
  42. bottom: 0px;
  43. left: 0;
  44. padding: 15px;
  45. width: 100%;
  46. }
  47. h2 {
  48. font-size: 26px;
  49. color: var(--teal-green);
  50. opacity: 0.7;
  51. font-weight: 700;
  52. }
  53. h5 {
  54. color: var(--dark-grey);
  55. font-weight: 500;
  56. font-size: 14px;
  57. margin-bottom: 3px;
  58. }
  59. p {
  60. color: var(--light-grey);
  61. font-size: 12px;
  62. }
  63. .progress-holder {
  64. position: relative;
  65. height: 5px;
  66. background-color: #cecece;
  67. border-radius: 30px;
  68. overflow: hidden;
  69. width: 100%;
  70. margin-top: 3px;
  71. .progress {
  72. background-color: var(--green);
  73. width: 50%;
  74. height: 100%;
  75. position: absolute;
  76. left: 0;
  77. top: 0;
  78. }
  79. }
  80. }