new_task.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. .new_task_page {
  2. height: 50vw;
  3. background-color: #dcb495;
  4. }
  5. .form_data {
  6. display: flex;
  7. flex-direction: column;
  8. margin-left: 2%;
  9. }
  10. .form_block {
  11. display: flex;
  12. align-items: center;
  13. justify-content: center;
  14. }
  15. .form_data_button {
  16. display: flex;
  17. flex-direction: column;
  18. justify-content: center;
  19. align-items: center;
  20. }
  21. .input_data {
  22. color: #000000;
  23. border: 0.1vw solid #595008;
  24. height: 4.5vw;
  25. min-height: 4.5vw;
  26. width: 50vw;
  27. background-color: #dbc3af;
  28. border-radius: 4.5vw;
  29. font-size: 1.3vw;
  30. display: inline-flex;
  31. align-items: center;
  32. }
  33. .form_label {
  34. margin-top: 10px;
  35. font-size: 1.3vw;
  36. color: #ffffff;
  37. font-weight: bold;
  38. }
  39. .description {
  40. border-radius: 2vw !important;
  41. width: 50vw;
  42. max-height: 10vw;
  43. }
  44. .name_form_block {
  45. width: 100%;
  46. display: flex;
  47. flex-direction: column;
  48. align-items: center;
  49. }
  50. .deadline {
  51. width: 20vw;
  52. }
  53. .quest_button {
  54. margin-top: 5vw;
  55. margin-left: 5vw;
  56. width: 20vw;
  57. height: 5vw;
  58. background-color: #000000;
  59. color: #ffffff;
  60. border-radius: 5vw;
  61. vertical-align: middle;
  62. font-size: 1.5vw;
  63. }
  64. .data_form_block {
  65. display: flex;
  66. flex-direction: row;
  67. align-items: center;
  68. justify-content: center;
  69. }
  70. .deadline {
  71. margin: 5px;
  72. }
  73. .link_back_block {
  74. display: flex;
  75. align-items: center;
  76. justify-content: center;
  77. flex-direction: column;
  78. flex-wrap: nowrap;
  79. }
  80. .link_back {
  81. background-color: #ffffff;
  82. color: #000000;
  83. width: 15vw;
  84. height: 4.5vw;
  85. vertical-align: middle;
  86. border-radius: 5vw;
  87. display: flex;
  88. align-items: center;
  89. justify-content: center;
  90. }
  91. .link_back:hover {
  92. text-decoration: none;
  93. color: #000000;
  94. }
  95. .link_back_text {
  96. font-size: 1.5vw;
  97. margin-top: 15px;
  98. display: flex;
  99. align-items: center;
  100. justify-content: center;
  101. }