Licitator 1.0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

132 lines
2.6 KiB

5 years ago
  1. <style type="text/css">
  2. #hidden_form_item {
  3. display: none;
  4. }
  5. body {
  6. background: #a6a6a6;
  7. }
  8. .category {
  9. max-width: 1200px;
  10. font-family: sans-serif;
  11. margin-bottom: 20px;
  12. }
  13. .category > .content {
  14. background: white;
  15. padding: 10px;
  16. }
  17. .category > .header {
  18. background: #0DB0D8;
  19. color: white;
  20. margin: 0 0 5px 0;
  21. padding: 10px;
  22. }
  23. .lab1 {
  24. grid-area: lab1;
  25. }
  26. .lab2 {
  27. grid-area: lab2;
  28. }
  29. .lab3 {
  30. grid-area: lab3;
  31. }
  32. .lab4 {
  33. grid-area: lab4;
  34. }
  35. .lab5 {
  36. grid-area: lab5;
  37. }
  38. .input1 {
  39. grid-area: input1;
  40. }
  41. .input2 {
  42. grid-area: input2;
  43. }
  44. .input3 {
  45. grid-area: input3;
  46. }
  47. .input4 {
  48. grid-area: input4;
  49. }
  50. .input5 {
  51. grid-area: input5;
  52. }
  53. .question {
  54. margin-bottom: 15px;
  55. }
  56. .category > .content .options {
  57. display: grid;
  58. grid-template-areas: 'input1 input2 input3 input4 input5' 'lab1 lab2 lab3 lab4 lab5';
  59. justify-content: center;
  60. grid-auto-columns: 1fr;
  61. }
  62. .category > .content .grid-form {
  63. display: grid;
  64. grid-template-columns: repeat(3, 1fr);
  65. }
  66. .category > .content .pre-text, .post-text {
  67. text-align: center;
  68. }
  69. .category > .content .options > input {
  70. align-self: center;
  71. justify-self: center;
  72. }
  73. .category > .content .options > label {
  74. text-align: center;
  75. }
  76. .btn-success {
  77. background-color: #00a65a;
  78. border-color: #008d4c;
  79. }
  80. .btn {
  81. border-radius: 3px;
  82. -webkit-box-shadow: none;
  83. box-shadow: none;
  84. border: 1px solid transparent;
  85. }
  86. .btn-success {
  87. color: #fff;
  88. background-color: #5cb85c;
  89. border-color: #4cae4c;
  90. }
  91. .btn {
  92. display: inline-block;
  93. padding: 6px 12px;
  94. margin-bottom: 0;
  95. font-size: 14px;
  96. font-weight: 400;
  97. line-height: 1.42857143;
  98. text-align: center;
  99. white-space: nowrap;
  100. vertical-align: middle;
  101. -ms-touch-action: manipulation;
  102. touch-action: manipulation;
  103. cursor: pointer;
  104. -webkit-user-select: none;
  105. -moz-user-select: none;
  106. -ms-user-select: none;
  107. user-select: none;
  108. background-image: none;
  109. border: 1px solid transparent;
  110. border-radius: 4px;
  111. }
  112. </style>