answer.css 5.4 KB

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