app.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. .app-container {
  2. display: flex;
  3. flex-direction: row;
  4. }
  5. #poll-container {
  6. padding:50px;
  7. height: 100vh;
  8. display: flex;
  9. flex: 3;
  10. overflow-y: auto;
  11. flex-wrap: wrap;
  12. }
  13. #form-container {
  14. padding:50px;
  15. height: 100vh;
  16. display: block;
  17. background-color: #232628;
  18. color:#fff;
  19. flex: 1;
  20. overflow-y: auto;
  21. }
  22. .poll-question {
  23. color: #000000;
  24. font-size: 2.5em;
  25. font-weight: 600;
  26. padding-bottom:30px;
  27. }
  28. .questions {
  29. display: block;
  30. }
  31. .poll-item {
  32. margin-bottom:50px;
  33. border-bottom:4px solid #dadada;
  34. padding-bottom:50px;
  35. }
  36. .button_yes {
  37. display: inline-block;
  38. background-color: white;
  39. color: #4CAF50;
  40. border: 4px solid #4CAF50;
  41. padding:20px;
  42. font-size: 2em;
  43. min-width:200px;
  44. text-align: center;
  45. border-radius:15px;
  46. text-decoration: none;
  47. margin-left: 50px;
  48. margin-right: 50px;
  49. }
  50. .button_yes_answered {
  51. display: inline-block;
  52. background-color: #4CAF50;
  53. color: white;
  54. border: 4px solid #4CAF50;
  55. padding:20px;
  56. font-size: 2em;
  57. min-width:200px;
  58. border-radius:15px;
  59. text-decoration: none;
  60. margin-left: 50px;
  61. margin-right: 50px;
  62. }
  63. .button_no {
  64. display: inline-block;
  65. background-color: white;
  66. color: #af4c4c;
  67. border: 4px solid #af4c4c;
  68. padding:20px;
  69. font-size: 2em;
  70. min-width:200px;
  71. text-align: center;
  72. border-radius:15px;
  73. text-decoration: none;
  74. margin-left: 50px;
  75. margin-right: 50px;
  76. }
  77. .button_no_answered {
  78. display: inline-block;
  79. background-color: #af4c4c;
  80. color: white;
  81. border: 4px solid #af4c4c;
  82. padding:20px;
  83. font-size: 2em;
  84. min-width:200px;
  85. border-radius:15px;
  86. text-decoration: none;
  87. margin-left: 50px;
  88. margin-right: 50px;
  89. }
  90. .form-block {
  91. display: block;
  92. }
  93. form {
  94. font-size:1.5em;
  95. }
  96. input {
  97. font-size:1.1em !important;
  98. }
  99. select {
  100. font-size:1.1em !important;
  101. }
  102. button {
  103. margin-top:25px;
  104. font-size:1.5em !important;
  105. }