style.css 5.4 KB

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