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.

site.css 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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. }
  46. .image-logo {
  47. margin-top: 0;
  48. margin-bottom: 25px;
  49. align-items: center;
  50. justify-content: center;
  51. display: flex;
  52. }
  53. .modal {
  54. display: flex;
  55. flex-direction: column;
  56. /*justify-content: center;*/
  57. /*align-items: center;*/
  58. padding: 32px;
  59. gap: 24px;
  60. position: absolute;
  61. width: 600px;
  62. height: 800px;
  63. left: calc(50vw - 300px);
  64. top: calc(50vh - 400px);
  65. overflow-y: auto;
  66. scrollbar-width: thin;
  67. scrollbar-color: #ddd;
  68. background-color: #FFFFFF;
  69. color: #0D1C52;
  70. box-shadow: 0 44px 64px rgba(69, 25, 160, 0.1);
  71. border-radius: 32px;
  72. }
  73. .modal::-webkit-scrollbar {
  74. width: 5px;
  75. }
  76. .modal::-webkit-scrollbar-track {
  77. background: #ddd;
  78. }
  79. .modal::-webkit-scrollbar-thumb {
  80. background: #777;
  81. }
  82. .share-files {
  83. text-align: left !important;
  84. align-items: initial;
  85. color: #0D1C52;
  86. width: 100%;
  87. }
  88. .share-files-form {
  89. color: #0D1C52;
  90. width: 100%;
  91. }
  92. .button-box {
  93. text-align:center;
  94. margin-top:10px;
  95. margin-bottom: 15px;
  96. display: flex;
  97. flex-direction: row;
  98. justify-content: space-between;
  99. gap: 8px;
  100. padding: 0;
  101. }
  102. .single-button-input {
  103. flex: 1;
  104. }
  105. .radio-input {
  106. display: none;
  107. color: #B9CFE4;
  108. }
  109. .label-available {
  110. cursor: pointer;
  111. border: 1px solid #0D1C52;
  112. border-radius: 5px;
  113. width: 100%;
  114. height: 55px;
  115. padding-top: 15px;
  116. }
  117. .label-text {
  118. font-size: 23px;
  119. }
  120. .radio-input:checked ~ .label-available {
  121. /*background-color: #FFA463 !important;*/
  122. background-color: #90278F;
  123. color: #FFFFFF;
  124. }
  125. .share-button {
  126. /* Auto layout */
  127. display: flex;
  128. flex-direction: row;
  129. justify-content: center;
  130. align-items: center;
  131. padding: 32px;
  132. gap: 10px;
  133. width: 100%;
  134. height: 94px;
  135. margin-top: 14px;
  136. background: #90278F;
  137. border-radius: 30px;
  138. /* Inside auto layout */
  139. flex: none;
  140. order: 2;
  141. align-self: stretch;
  142. flex-grow: 0;
  143. color: #FFFFFF;
  144. font-size: 40px;
  145. }
  146. .input-message {
  147. box-sizing: border-box;
  148. width: 100%;
  149. height: 90px;
  150. /* white */
  151. background: #FFFFFF;
  152. border: 1px solid #8F9DCE;
  153. border-radius: 4px;
  154. }
  155. .drop-here {
  156. box-sizing: border-box;
  157. width: 100%;
  158. height: 90px;
  159. /* white */
  160. background: #FFFFFF;
  161. border: 1px dashed #8F9DCE;
  162. border-radius: 4px;
  163. display: inline-block; /* [4] */
  164. vertical-align: middle;
  165. text-align: center;
  166. }
  167. .default-text {
  168. margin-top: 15px;
  169. height: 100%;
  170. /*text-align: center;*/
  171. }