template_project.css 5.4 KB

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