style.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. body {
  2. display: flex;
  3. flex-direction: column;
  4. min-height: 100vh;
  5. width: 100%;
  6. }
  7. footer {
  8. margin-top: auto;
  9. }
  10. [v-cloak] {
  11. display: none !important;
  12. }
  13. .form-control {
  14. font-weight: 600 !important;
  15. }
  16. .footer {
  17. margin-left: 200px;
  18. }
  19. .w-80 {
  20. width: 80%;
  21. }
  22. .btn-primary {
  23. background-color: #2AB7CA;
  24. border-color: #2AB7CA;
  25. }
  26. .text-blue {
  27. color: #08415C;
  28. }
  29. .sidenav {
  30. height: 100%;
  31. width: 250px;
  32. position: fixed;
  33. z-index: 1;
  34. top: 66px;
  35. left: 0;
  36. background-color: #eee;
  37. overflow-x: hidden;
  38. padding-top: 10px;
  39. padding-bottom: 100px;
  40. }
  41. .navbar {
  42. z-index: 100;
  43. }
  44. .nav-link {
  45. padding: 10px;
  46. }
  47. .nav-link{
  48. display: block;
  49. padding: 10px 0 10px 45px;
  50. font-weight: 300;
  51. border-bottom: 1px solid #ddd;
  52. color: #999;
  53. }
  54. .nav-link:hover {
  55. text-decoration: none;
  56. color: #000;
  57. }
  58. .nav-link.active, .nav-link.completed {
  59. color: #000 !important;
  60. font-weight: 500;
  61. }
  62. .nav-link.completed {
  63. padding-left: 20px;
  64. }
  65. .nav-link.completed::before {
  66. font-family: "Font Awesome 5 Free";
  67. font-weight: 900;
  68. content: "\f058";
  69. padding-right: 5px;
  70. color: #17a2b8;
  71. }
  72. .main {
  73. margin-left: 250px;
  74. margin-top: 60px;
  75. }
  76. .file {
  77. position: relative;
  78. overflow: hidden;
  79. cursor: pointer;
  80. }
  81. .input-file {
  82. position: absolute;
  83. font-size: 50px;
  84. opacity: 0;
  85. right: 0;
  86. top: 0;
  87. cursor: pointer;
  88. }
  89. video {
  90. background: #222;
  91. margin: 0 0 20px 0;
  92. --width: 100%;
  93. width: var(--width);
  94. height: 300px;
  95. }
  96. .hidden {
  97. display: none;
  98. }
  99. @media screen and (max-width:1024px) {
  100. .table-container {
  101. overflow-x: scroll;
  102. }
  103. .w-50, .w-80 {
  104. width: 100% !important;
  105. overflow-x: scroll;
  106. }
  107. }
  108. @media screen and (max-width:992px) {
  109. .sidenav {
  110. width: 200px;
  111. height: 100%;
  112. position: absolute;
  113. }
  114. .footer {
  115. margin-left: 0;
  116. }
  117. .main {
  118. margin-left: 200px;
  119. }
  120. .nav-link{
  121. display: block;
  122. padding: 10px 0 10px 35px;
  123. }
  124. .nav-link.completed {
  125. padding-left: 10px;
  126. }
  127. }
  128. @media screen and (min-width:650px) {
  129. #navbarNavDropdown {
  130. display: none !important;
  131. }
  132. }
  133. @media screen and (max-width:600px) {
  134. #navbarNavDropdown {
  135. position: absolute;
  136. top: 60px;
  137. background: #fff;
  138. z-index: 100;
  139. left: 0px;
  140. }
  141. .sidenav {
  142. display: none;
  143. }
  144. .main {
  145. margin-left: 0;
  146. }
  147. .navbar-toggler {
  148. display: inline;
  149. }
  150. }
  151. .w-100px {
  152. width: 100px;
  153. }