new_task.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. }
  43. .name_form_block {
  44. width: 100%;
  45. display: flex;
  46. flex-direction: column;
  47. align-items: center;
  48. }
  49. .deadline {
  50. width: 20vw;
  51. }
  52. .quest_button {
  53. margin-top: 5vw;
  54. margin-left: 5vw;
  55. width: 20vw;
  56. height: 5vw;
  57. background-color: #000000;
  58. color: #ffffff;
  59. border-radius: 5vw;
  60. vertical-align: middle;
  61. font-size: 1.5vw;
  62. }
  63. .data_form_block {
  64. display: flex;
  65. flex-direction: row;
  66. align-items: center;
  67. justify-content: center;
  68. }
  69. .deadline {
  70. margin: 5px;
  71. }
  72. .link_back_block {
  73. display: flex;
  74. align-items: center;
  75. justify-content: center;
  76. flex-direction: column;
  77. flex-wrap: nowrap;
  78. }
  79. .link_back {
  80. background-color: #ffffff;
  81. color: #000000;
  82. width: 15vw;
  83. height: 4.5vw;
  84. vertical-align: middle;
  85. border-radius: 5vw;
  86. display: flex;
  87. align-items: center;
  88. justify-content: center;
  89. }
  90. .link_back:hover {
  91. text-decoration: none;
  92. color: #000000;
  93. }
  94. .link_back_text {
  95. font-size: 1.5vw;
  96. margin-top: 15px;
  97. display: flex;
  98. align-items: center;
  99. justify-content: center;
  100. }