style.css 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. @import url(http://fonts.googleapis.com/css?family=Roboto);
  2. * {
  3. box-sizing: border-box;
  4. }
  5. html,
  6. body,
  7. h1,
  8. h2,
  9. button {
  10. padding: 0;
  11. margin: 0;
  12. }
  13. html,
  14. button,
  15. input,
  16. textarea {
  17. font-family: 'Roboto', sans-serif;
  18. }
  19. body {
  20. width: 100%;
  21. background: #fafafa;
  22. }
  23. a {
  24. color: #00e676;
  25. }
  26. nav img {
  27. vertical-align: middle;
  28. margin-right: 5px;
  29. }
  30. nav dt:hover,
  31. nav dd:hover,
  32. nav dt.active,
  33. nav dd.active {
  34. background: #eeeeee;
  35. cursor: pointer;
  36. cursor: hand;
  37. }
  38. nav dt {
  39. padding: 10px 10px;
  40. }
  41. nav dd {
  42. margin: 0;
  43. padding: 10px 10px 10px 40px;
  44. }
  45. nav a {
  46. color: black;
  47. text-decoration: none;
  48. }
  49. h2 {
  50. margin-bottom: 10px;
  51. }
  52. h2 a {
  53. color: inherit;
  54. }
  55. h3 {
  56. margin-bottom: 10px;
  57. }
  58. h3 :first-child {
  59. margin-top: 0px;
  60. }
  61. hr {
  62. border: 1px solid #eeeeee;
  63. }
  64. table {
  65. border-collapse: collapse;
  66. }
  67. table input[type=text],
  68. table textarea {
  69. width: 100%;
  70. }
  71. th {
  72. text-align: left;
  73. }
  74. td,
  75. th {
  76. padding: 0 10px 5px 0;
  77. vertical-align: top;
  78. }
  79. form button,
  80. form input[type=submit] {
  81. border: none;
  82. background: none;
  83. }
  84. form button:hover,
  85. form input[type=submit]:hover {
  86. background: #eeeeee;
  87. }
  88. button:hover {
  89. cursor: pointer;
  90. cursor: hand;
  91. }
  92. img {
  93. max-width: 100%;
  94. }
  95. p:first-child {
  96. margin-top: 0;
  97. }
  98. #menu {
  99. background: #fafafa;
  100. width: 280px;
  101. left: 0;
  102. position: fixed;
  103. height: 100%;
  104. box-shadow: -2px 0px 0px 0px #eeeeee inset;
  105. z-index: 400;
  106. overflow-x: hidden;
  107. }
  108. #menu .header {
  109. z-index: 401;
  110. }
  111. #menu-button {
  112. display: none;
  113. }
  114. #nav-container {
  115. overflow: auto;
  116. width: 100%;
  117. }
  118. #main {
  119. padding-left: 280px;
  120. padding-top: 64px;
  121. }
  122. #main > * {
  123. padding-left: 20px !important;
  124. }
  125. #main-header {
  126. position: fixed;
  127. padding-left: 280px;
  128. left: 0;
  129. right: 0;
  130. z-index: 1;
  131. }
  132. #main-header .header > * {
  133. padding-left: 20px !important;
  134. }
  135. #content {
  136. padding: 20px;
  137. margin-bottom: 60px;
  138. }
  139. #buttons {
  140. position: fixed;
  141. bottom: 20px;
  142. right: 20px;
  143. left: 280px;
  144. vertical-align: bottom;
  145. }
  146. #buttons > table {
  147. width: 100%;
  148. }
  149. #buttons > table tr > td {
  150. vertical-align: bottom;
  151. padding: 0;
  152. }
  153. #buttons > table tr > td:last-child {
  154. text-align: right;
  155. }
  156. #buttons > table tr > td:not(:first-child) {
  157. margin-top: 20px;
  158. }
  159. #buttons button {
  160. border-radius: 50%;
  161. display: inline-block;
  162. text-align: center;
  163. box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.25);
  164. vertical-align: middle;
  165. border: none;
  166. background: #00e676;
  167. width: 40px;
  168. height: 40px;
  169. color: white;
  170. font-size: 24px;
  171. line-height: 24px;
  172. }
  173. #cookiePopup {
  174. position: absolute;
  175. background: black;
  176. top: 50%;
  177. left: 50%;
  178. padding: 20px;
  179. border-radius: 30px;
  180. width: 230px;
  181. height: 230px;
  182. margin-top: -115px;
  183. margin-left: -115px;
  184. color: white;
  185. }
  186. #cookiePopup > div {
  187. margin-top: 40px;
  188. text-align: center;
  189. }
  190. .header {
  191. height: 64px;
  192. background: #f44336;
  193. color: white;
  194. white-space: nowrap;
  195. padding: 0 !important;
  196. overflow: hidden;
  197. box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.8);
  198. }
  199. .header > * {
  200. line-height: 64px;
  201. font-size: 24px;
  202. font-weight: 400;
  203. padding-left: 10px;
  204. white-space: nowrap;
  205. display: inline;
  206. vertical-align: middle;
  207. }
  208. .header > h2 > span {
  209. display: inline-block;
  210. }
  211. .header > img {
  212. height: 50%;
  213. }
  214. .header span {
  215. display: inline-block;
  216. }
  217. .header span:not(:first-child):before {
  218. margin: 2px 10px 0 10px;
  219. width: 6px;
  220. float: left;
  221. height: 62px;
  222. background: url("/images/chevron.png") no-repeat scroll right center / contain rgba(0, 0, 0, 0);
  223. content: "";
  224. }
  225. .circle {
  226. border-radius: 50%;
  227. display: inline-block;
  228. text-align: center;
  229. vertical-align: middle;
  230. }
  231. .go,
  232. .expand {
  233. display: none;
  234. float: right;
  235. }
  236. .backdrop {
  237. background: rgba(0, 0, 0, 0.5);
  238. width: 100%;
  239. height: 100%;
  240. position: fixed;
  241. top: 0;
  242. left: 0;
  243. z-index: 100;
  244. display: none;
  245. }
  246. .errors {
  247. background: url(/images/error.svg) no-repeat scroll 10px 10px #424242;
  248. margin: -20px;
  249. margin-bottom: 20px;
  250. padding: 10px;
  251. padding-left: 40px;
  252. color: #fff;
  253. }
  254. .errors ul {
  255. margin: 0;
  256. list-style: square;
  257. }
  258. .row {
  259. width: 100%;
  260. clear: both;
  261. }
  262. .row > .col {
  263. width: 100%;
  264. float: left;
  265. }
  266. .row .col-lg-1 > .col {
  267. width: 100%;
  268. }
  269. .row .col-lg-2 > .col {
  270. width: 50%;
  271. }
  272. .row .col-lg-3 > .col {
  273. width: 33.3333%;
  274. }
  275. .row .col-lg-4 > .col {
  276. width: 25%;
  277. }
  278. .row .col-md-1 > .col {
  279. width: 100%;
  280. }
  281. .row .col-md-2 > .col {
  282. width: 50%;
  283. }
  284. .row .col-md-3 > .col {
  285. width: 33.3333%;
  286. }
  287. .row .col-md-4 > .col {
  288. width: 25%;
  289. }
  290. .row .col-sm-1 > .col {
  291. width: 100%;
  292. }
  293. .row .col-sm-2 > .col {
  294. width: 50%;
  295. }
  296. .row .col-sm-3 > .col {
  297. width: 33.3333%;
  298. }
  299. .row .col-sm-4 > .col {
  300. width: 25%;
  301. }