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.
 
 
 
 

122 lines
2.1 KiB

  1. .page {
  2. background-color: var(--black);
  3. height: 100vh;
  4. padding-bottom: 60px;
  5. overflow: auto;
  6. }
  7. .nav-header {
  8. background-color: var(--ash-black);
  9. display: flex;
  10. align-items: center;
  11. padding: 0 5%;
  12. height: 60px;
  13. position: sticky;
  14. position: -webkit-sticky;
  15. top: 0;
  16. z-index: 1;
  17. .close-button {
  18. border: 0px;
  19. background-color: transparent;
  20. .icon {
  21. width: 16px;
  22. height: 16px;
  23. fill: var(--light-grey);
  24. }
  25. }
  26. h5 {
  27. font-size: 16px;
  28. color: white;
  29. font-weight: 400;
  30. margin-left: 20px;
  31. letter-spacing: 1px;
  32. .icon {
  33. width: 15px;
  34. height: 15px;
  35. fill: white;
  36. margin-right: 3px;
  37. vertical-align: middle;
  38. position: relative;
  39. top: -1px;
  40. }
  41. }
  42. }
  43. h2 {
  44. padding: 0 5%;
  45. font-size: 22px;
  46. margin: 20px auto 10px;
  47. color: white;
  48. font-weight: 400;
  49. }
  50. .author {
  51. display: flex;
  52. width: 100%;
  53. padding: 0 5%;
  54. img {
  55. width: 20px;
  56. height: 20px;
  57. border-radius: 50%;
  58. margin-right: 10px;
  59. }
  60. label {
  61. font-size: 14px;
  62. color: white;
  63. margin-right: 10px;
  64. }
  65. span {
  66. position: relative;
  67. font-size: 14px;
  68. color: var(--light-grey);
  69. position: relative;
  70. display: flex;
  71. align-items: center;
  72. &::before {
  73. content: '';
  74. display: inline-block;
  75. height: 100%;
  76. width: 2px;
  77. background-color: var(--light-grey);
  78. margin-right: 10px;
  79. }
  80. }
  81. }
  82. .description {
  83. width: 90%;
  84. margin: 40px auto 0;
  85. color: white;
  86. p {
  87. margin: 20px auto;
  88. font-size: 14px;
  89. line-height: 2;
  90. }
  91. a {
  92. color: var(--teal-green);
  93. }
  94. figure {
  95. display: block;
  96. width: 100%;
  97. border-radius: 5px;
  98. overflow: hidden;
  99. margin: 20px auto;
  100. img {
  101. display: block;
  102. width: 100%;
  103. object-fit: cover;
  104. }
  105. }
  106. }