forms.css 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. /*
  2. * Bison Building Form Builder
  3. */
  4. /* Table of contents
  5. ––––––––––––––––––––––––––––––––––––––––––––––––––
  6. - Grid
  7. - Base Styles
  8. - Typography
  9. - Links
  10. - Tables
  11. - Misc
  12. - Clearing
  13. */
  14. /* Grid
  15. –––––––––––––––––––––––––––––––––––––––––––––––––– */
  16. .container {
  17. position: relative;
  18. width: 100%;
  19. max-width: 1080px;
  20. margin: 0 auto;
  21. padding: 0 10px;
  22. box-sizing: border-box; }
  23. .column,
  24. .columns {
  25. width: 100%;
  26. float: left;
  27. box-sizing: border-box; }
  28. /* For devices larger than 400px */
  29. @media (min-width: 400px) {
  30. .container {
  31. width: 85%;
  32. padding: 0; }
  33. }
  34. /* Base Styles
  35. –––––––––––––––––––––––––––––––––––––––––––––––––– */
  36. /* NOTE
  37. html is set to 62.5% so that all the REM measurements throughout Skeleton
  38. are based on 10px sizing. So basically 1.5rem = 15px :) */
  39. html {
  40. font-size: 62.5%; }
  41. body {
  42. font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
  43. font-weight: 400;
  44. font-family: Arial, Helvetica, "HelveticaNeue", "Helvetica Neue", sans-serif;
  45. color: #222; }
  46. /* Typography
  47. –––––––––––––––––––––––––––––––––––––––––––––––––– */
  48. h1, h2, h3, h4, h5, h6 {
  49. margin: 0;
  50. font-weight: 300;
  51. }
  52. h3 {
  53. font-size: 2.4rem;
  54. font-weight: 600;
  55. }
  56. h4 {
  57. font-size: 1.8rem;
  58. font-weight: 600;
  59. }
  60. p {
  61. margin-top: 0;
  62. margin-bottom: 0;
  63. }
  64. /* Links
  65. –––––––––––––––––––––––––––––––––––––––––––––––––– */
  66. a {
  67. color: #1EAEDB; }
  68. a:hover {
  69. color: #0FA0CE; }
  70. /* Table Styles
  71. –––––––––––––––––––––––––––––––––––––––––––––––––– */
  72. #title {
  73. text-align: left;
  74. font-weight: 300;
  75. }
  76. #codes {
  77. text-align: center;
  78. background-color: lightgrey;
  79. }
  80. #top-heading {
  81. border-top: 3px solid black;
  82. border-bottom: 2px solid black;
  83. }
  84. #heading {
  85. border-bottom: 2px solid black;
  86. border-top: 2px solid black;
  87. }
  88. #footer {
  89. border-bottom: 1px solid black;
  90. border-top: 1px solid black;
  91. }
  92. #form {
  93. text-align: center;
  94. background-color: lightgrey;
  95. font-weight:600;
  96. font-size: 3rem;
  97. }
  98. #formNo {
  99. text-align: center;
  100. background-color: lightgrey;
  101. font-weight:600;
  102. font-size: 5rem;
  103. }
  104. #border {
  105. text-align: left;
  106. border-width: 0;
  107. border: 1px solid darkgrey;
  108. color: darkgrey;
  109. font-style: italic;
  110. font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  111. }
  112. tr, border {
  113. border: 1px solid darkgrey;
  114. }
  115. /* Tables
  116. –––––––––––––––––––––––––––––––––––––––––––––––––– */
  117. table {
  118. float: left;
  119. border-width: 0;
  120. border-left: none;
  121. border-right: none;
  122. }
  123. tbody {
  124. border-width: 0;
  125. border: none;
  126. }
  127. th, tr {
  128. padding: 5px;
  129. width: inherit;
  130. }
  131. td {
  132. padding: 2px;
  133. }
  134. th:first-child,
  135. td:first-child {
  136. padding-left: 12px; }
  137. th:last-child,
  138. td:last-child {
  139. padding-right: 12px; }
  140. /* Misc
  141. –––––––––––––––––––––––––––––––––––––––––––––––––– */
  142. hr {
  143. /* margin-top: 3rem;
  144. margin-bottom: 3.5rem; */
  145. border-width: 0;
  146. border-top: 3px solid black; }
  147. /* Clearing
  148. –––––––––––––––––––––––––––––––––––––––––––––––––– */
  149. /* Self Clearing Goodness */
  150. .container:after,
  151. .row:after,
  152. .u-cf {
  153. content: "";
  154. display: table;
  155. clear: both; }