style.css 6.3 KB

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