style.css 6.3 KB

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