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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  1. .select2-selection__rendered {
  2. line-height: 31px !important;
  3. }
  4. .select2-container .select2-selection--single {
  5. height: 38px !important;
  6. }
  7. .select2-selection__arrow {
  8. height: 34px !important;
  9. }
  10. .default-layout {
  11. margin-left: 0px !important;
  12. }
  13. .answerable {
  14. background-color: rgb(96, 208, 86);
  15. border-color: rgb(96, 208, 86);
  16. }
  17. .answered {
  18. background-color: rgb(102, 170, 96);
  19. border-color: rgb(102, 170, 96);
  20. }
  21. .correct {
  22. background-color: rgb(126, 232, 116);
  23. border-color: rgb(126, 232, 116);
  24. }
  25. .correct.answered {
  26. background-color: rgb(247, 247, 247);
  27. border-color: rgb(0, 255, 0);
  28. }
  29. .wrong {
  30. background-color: rgb(242, 119, 119);
  31. border-color: rgb(242, 119, 119);
  32. }
  33. .wrong.answered {
  34. background-color: rgb(247, 247, 247);
  35. border-color: rgb(255, 0, 0);
  36. }
  37. body {
  38. background: url('../img/gradient.png') no-repeat center center fixed;
  39. -webkit-background-size: cover;
  40. -moz-background-size: cover;
  41. -o-background-size: cover;
  42. background-size: cover;
  43. size: 16px;
  44. font-weight: bold;
  45. min-height: 100vh;
  46. height: fit-content;
  47. width: 100%;
  48. display: flex;
  49. align-items: center;
  50. justify-content: center;
  51. }
  52. .image-logo {
  53. margin-top: 0;
  54. margin-bottom: 1.5rem;
  55. align-items: center;
  56. justify-content: center;
  57. display: flex;
  58. }
  59. @media(max-width: 370px){
  60. .image-logo-image {
  61. width: 250px;
  62. }
  63. }
  64. .modal {
  65. display: flex;
  66. flex-direction: column;
  67. /*justify-content: center;*/
  68. /*align-items: center;*/
  69. padding: 32px;
  70. gap: 24px;
  71. max-width: 600px;
  72. height: fit-content;
  73. overflow-y: auto;
  74. scrollbar-width: thin;
  75. scrollbar-color: #ddd;
  76. background-color: #FFFFFF;
  77. color: #0D1C52;
  78. box-shadow: none;
  79. border-radius: 32px;
  80. margin: 1.3rem;
  81. }
  82. .modal::-webkit-scrollbar {
  83. width: 5px;
  84. }
  85. .modal::-webkit-scrollbar-track {
  86. background: #ddd;
  87. }
  88. .modal::-webkit-scrollbar-thumb {
  89. background: #777;
  90. }
  91. .modal-content {
  92. border-radius: 18px;
  93. }
  94. .share-files {
  95. text-align: left !important;
  96. align-items: initial;
  97. color: #0D1C52;
  98. width: 100%;
  99. }
  100. h1 {
  101. text-align: center;
  102. font-size: 2rem;
  103. margin-bottom: 2rem;
  104. }
  105. .share-files-form {
  106. color: #0D1C52;
  107. width: 100%;
  108. }
  109. .button-box {
  110. text-align: center;
  111. margin-top: 10px;
  112. margin-bottom: 0;
  113. display: flex;
  114. flex-direction: row;
  115. justify-content: space-between;
  116. padding: 0;
  117. }
  118. .single-button-input {
  119. }
  120. .radio-input {
  121. display: none;
  122. color: #B9CFE4;
  123. }
  124. .label-available {
  125. cursor: pointer;
  126. border: 1px solid #0D1C52;
  127. border-radius: 5px;
  128. width: 100%;
  129. justify-content: center;
  130. align-items: center;
  131. display: flex;
  132. height: 54px;
  133. min-height: fit-content;
  134. }
  135. @media(max-width: 370px){
  136. .label-available {
  137. flex-direction: column;
  138. }
  139. }
  140. .label-text {
  141. font-size: 1.3rem;
  142. padding: 0.5rem;
  143. }
  144. .label-text-lower {
  145. font-size: 16px;
  146. color: #FFA463;
  147. }
  148. .radio-input:checked ~ .label-available {
  149. /*background-color: #FFA463 !important;*/
  150. background-color: #90278F;
  151. color: #FFFFFF;
  152. }
  153. .share-button {
  154. /* Auto layout */
  155. display: flex;
  156. flex-direction: row;
  157. justify-content: center;
  158. align-items: center;
  159. padding: 32px;
  160. gap: 10px;
  161. text-transform: capitalize;
  162. width: 100%;
  163. background: #90278F;
  164. margin-top: 2rem;
  165. font-size: 1.3rem;
  166. height: 72px;
  167. border-radius: 18px;
  168. /* Inside auto layout */
  169. flex: none;
  170. order: 2;
  171. align-self: stretch;
  172. flex-grow: 0;
  173. color: #FFFFFF;
  174. }
  175. #filesUploaded {
  176. font-weight: 500;
  177. }
  178. .share-button:hover {
  179. /* Auto layout */
  180. display: flex;
  181. flex-direction: row;
  182. justify-content: center;
  183. align-items: center;
  184. padding: 32px;
  185. gap: 10px;
  186. width: 100%;
  187. background: #FFA463;
  188. margin-top: 2rem;
  189. font-size: 1.3rem;
  190. height: 72px;
  191. border-radius: 18px;
  192. /* Inside auto layout */
  193. flex: none;
  194. order: 2;
  195. align-self: stretch;
  196. flex-grow: 0;
  197. color: #FFFFFF;
  198. }
  199. .input-message {
  200. box-sizing: border-box;
  201. width: 100%;
  202. height: 90px;
  203. /* white */
  204. background: #FFFFFF;
  205. border: 1px solid #8F9DCE;
  206. border-radius: 4px;
  207. }
  208. .drop-here {
  209. box-sizing: border-box;
  210. width: 100%;
  211. height: 90px;
  212. /* white */
  213. background: #FFFFFF;
  214. border: 1px dashed #8F9DCE;
  215. border-radius: 4px;
  216. display: inline-block; /* [4] */
  217. vertical-align: middle;
  218. text-align: center;
  219. }
  220. .default-text {
  221. margin-top: 15px;
  222. height: 100%;
  223. /*text-align: center;*/
  224. }
  225. .link-show {
  226. align-items: center;
  227. align-self: center;
  228. align-content: center;
  229. border: 1px solid #8F9DCE;
  230. border-radius: 10px;
  231. color: #0D1C52;
  232. margin-bottom: 1rem;
  233. }
  234. .browse-button {
  235. color: dodgerblue;
  236. margin-bottom: 3px;
  237. margin-left: 0px;
  238. }
  239. .image-file-upload {
  240. position: center;
  241. margin-top: 12px;
  242. margin-bottom: 3px;
  243. padding: 0 !important;
  244. }
  245. .text-files-upload {
  246. margin-top: 2px;
  247. margin-right: 0;
  248. }
  249. .share-more-files-button {
  250. padding-left: 4px;
  251. color: #FFA463;
  252. }
  253. .share-more-files-button:hover {
  254. color: #90278F;
  255. }
  256. p {
  257. padding-left: 2px;
  258. font-size: 20px;
  259. }
  260. .switch {
  261. position: relative;
  262. display: inline-block;
  263. width: 60px;
  264. height: 34px;
  265. padding: 0.5rem;
  266. }
  267. .switch input {
  268. opacity: 0;
  269. width: 0;
  270. height: 0;
  271. }
  272. .slider {
  273. position: absolute;
  274. cursor: pointer;
  275. top: 0;
  276. left: 0;
  277. right: 0;
  278. bottom: 0;
  279. background-color: #ccc;
  280. -webkit-transition: .4s;
  281. transition: .4s;
  282. }
  283. .slider:before {
  284. position: absolute;
  285. content: "";
  286. height: 26px;
  287. width: 26px;
  288. left: 4px;
  289. bottom: 4px;
  290. background-color: white;
  291. -webkit-transition: .4s;
  292. transition: .4s;
  293. }
  294. input:checked + .slider {
  295. background-color: #90278F;
  296. }
  297. input:focus + .slider {
  298. box-shadow: 0 0 1px #90278F;
  299. }
  300. input:checked + .slider:before {
  301. -webkit-transform: translateX(26px);
  302. -ms-transform: translateX(26px);
  303. transform: translateX(26px);
  304. }
  305. /* Rounded sliders */
  306. .slider.round {
  307. border-radius: 34px;
  308. }
  309. .slider.round:before {
  310. border-radius: 50%;
  311. }
  312. .tooltip-div {
  313. position: relative;
  314. display: inline-block;
  315. margin-right: 5px;
  316. }
  317. .tooltip-div .tooltip-label {
  318. visibility: hidden;
  319. width: 150px;
  320. background-color: black;
  321. color: #fff;
  322. text-align: left;
  323. border-radius: 6px;
  324. padding: 5px 0;
  325. /* Position the tooltip */
  326. position: absolute;
  327. z-index: 1;
  328. top: 100%;
  329. left: 50%;
  330. margin-left: -60px;
  331. }
  332. .tooltip-div:hover .tooltip-label {
  333. visibility: visible;
  334. }