answer.css 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. body {
  2. background-color: #dcb495 !important;
  3. display: flex;
  4. flex-direction: column;
  5. justify-content: space-between;
  6. }
  7. .decision_page {
  8. background-color: #dcb495;
  9. min-height: 100vw;
  10. height: auto;
  11. display: flex;
  12. flex-direction: column;
  13. align-items: center;
  14. margin: 3vw;
  15. margin-bottom: 20vw;
  16. }
  17. .link_back_block {
  18. margin-right: 0.5vw;
  19. display: flex;
  20. align-items: center;
  21. justify-content: center;
  22. flex-direction: column;
  23. flex-wrap: nowrap;
  24. }
  25. .head_buttons_block {
  26. display: flex;
  27. flex-direction: row;
  28. }
  29. .link_back {
  30. background-color: #ffffff;
  31. color: #000000;
  32. width: 15vw;
  33. height: 4.5vw;
  34. vertical-align: middle;
  35. border-radius: 5vw;
  36. display: flex;
  37. align-items: center;
  38. justify-content: center;
  39. }
  40. .link_back:hover {
  41. text-decoration: none;
  42. color: #000000;
  43. }
  44. .link_back_text {
  45. font-size: 1.5vw;
  46. margin-top: 15px;
  47. display: flex;
  48. align-items: center;
  49. justify-content: center;
  50. }
  51. .name_block {
  52. margin-top: 3vw;
  53. width: 90%;
  54. height: auto;
  55. display: flex;
  56. flex-direction: column;
  57. align-items: center;
  58. }
  59. .title_block {
  60. width: 90%;
  61. display: flex;
  62. justify-content: center;
  63. }
  64. .title_task, .files_title {
  65. text-align: center;
  66. color: #000000;
  67. font-size: 4vw;
  68. max-width: 80%;
  69. overflow-x: auto;
  70. overflow-y: hidden;
  71. }
  72. .description_task {
  73. width: 80%;
  74. background-color: #EDCBB0;
  75. height: auto;
  76. max-height: 15vw;
  77. border-radius: 2vw;
  78. display: flex;
  79. overflow-y: auto;
  80. }
  81. .description_task::-webkit-scrollbar {
  82. width: 0.8vw !important;
  83. height: auto;
  84. }
  85. .description_task::-webkit-scrollbar-thumb {
  86. background-color: #d49d51 !important; /* цвет плашки */
  87. border-radius: 5vw !important; /* закругления плашки */
  88. border: 0.25vw solid #ffffff !important;
  89. }
  90. .description {
  91. margin: 15px;
  92. }
  93. .description_text {
  94. font-size: 1.5vw;
  95. text-align: justify;
  96. }
  97. .data_block {
  98. width: 100%;
  99. display: flex;
  100. align-items: flex-start;
  101. justify-content: center
  102. }
  103. .bottom_data {
  104. margin: 2vw;
  105. display: flex;
  106. flex-direction: column;
  107. align-items: center;
  108. justify-content: center;
  109. }
  110. .form_label {
  111. margin-top: 10px;
  112. font-size: 1.3vw;
  113. color: #000000;
  114. font-weight: bold;
  115. }
  116. .input_data {
  117. color: #000000;
  118. border: 0.1vw solid #595008;
  119. height: 4.5vw;
  120. min-height: 4.5vw;
  121. width: 30vw;
  122. background-color: #dbc3af;
  123. border-radius: 5vw;
  124. font-size: 1.3vw;
  125. display: inline-flex;
  126. align-items: center;
  127. }
  128. .input_button {
  129. width: 10vw;
  130. height: 5vw;
  131. border-radius: 5vw;
  132. vertical-align: middle;
  133. }
  134. .form_data {
  135. display: flex;
  136. flex-direction: column;
  137. margin-left: 2%;
  138. }
  139. .decision_block {
  140. margin-top: 3vw;
  141. width: 90%;
  142. height: 25vw;
  143. display: flex;
  144. flex-direction: column;
  145. align-items: center;
  146. }
  147. .padding_data {
  148. padding: 1vw;
  149. }
  150. .quest_button {
  151. color: #ffffff;
  152. width: 13vw;
  153. height: 5vw;
  154. background-color: #000000;
  155. border: 2px solid #ffffff;
  156. border-radius: 3vw;
  157. margin-left: 2vw;
  158. }
  159. form {
  160. display: flex;
  161. flex-direction: column;
  162. align-items: center;
  163. }
  164. .form_data_button {
  165. margin-top: 20px;
  166. display: flex;
  167. width: 30vw;
  168. align-items: center;
  169. justify-content: space-between;
  170. }
  171. .deadline {
  172. margin-top: 5px;
  173. }
  174. .text_data {
  175. width: 80%;
  176. border-radius: 2vw !important;
  177. min-height: 10vw;
  178. max-height: 20vw;
  179. }
  180. .form_text_one {
  181. width: 200%;
  182. }
  183. .files_block {
  184. width: 100%;
  185. margin: 2vw;
  186. background-color: #dbc3af;
  187. display: flex;
  188. flex-direction: column;
  189. align-items: stretch;
  190. border-radius: 2vw;
  191. min-height: 25vw;
  192. }
  193. .files_list {
  194. margin: 2vw;
  195. height: auto;
  196. overflow-y: auto;
  197. overflow-x: hidden;
  198. }
  199. .files {
  200. width: 80%;
  201. margin: 2vw;
  202. display: flex;
  203. flex-direction: column;
  204. align-items: center;
  205. min-height: 25vw;
  206. max-height: 30vw;
  207. }
  208. .file {
  209. width: 98%;
  210. display: flex;
  211. background-color: #694a2d;
  212. margin: 0.5vw;
  213. align-items: center;
  214. justify-content: space-between;
  215. flex-direction: row;
  216. height: 4.5vw;
  217. border-radius: 2vw;
  218. }
  219. .file_head {
  220. width: 30vw;
  221. margin-left: 1vw;
  222. height: 4vw;
  223. background-color: #694a2d !important;
  224. overflow-y: hidden;
  225. overflow-x: auto;
  226. }
  227. .file_head_path, .file_path {
  228. font-size: 1.5vw;
  229. color: #ffffff !important;
  230. font-weight: bold;
  231. height: 3vw;
  232. display: flex;
  233. align-items: flex-start;
  234. background-color: #694a2d !important;
  235. }
  236. .file_buttons {
  237. margin-right: 2vw;
  238. }
  239. .file_delete, .file_download {
  240. border-radius: 1vw !important;
  241. margin: 1vw;
  242. width: 8vw;
  243. height: 3vw;
  244. }
  245. .file_delete {
  246. background-color: hsla(0, 100%, 62%, 0.785) !important;
  247. border-color: hsla(0, 100%, 62%, 0.785) !important;
  248. }
  249. .button_text {
  250. font-size: 1.3vw;
  251. }