style-table.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520
  1. /*tables*/
  2. table {
  3. background-color: transparent;
  4. }
  5. caption {
  6. padding-top: 8px;
  7. padding-bottom: 8px;
  8. color: #777777;
  9. text-align: left;
  10. }
  11. th {
  12. text-align: left;
  13. }
  14. .table {
  15. width: 100%;
  16. max-width: 100%;
  17. margin-bottom: 20px;
  18. }
  19. .table > thead > tr > th,
  20. .table > tbody > tr > th,
  21. .table > tfoot > tr > th,
  22. .table > thead > tr > td,
  23. .table > tbody > tr > td,
  24. .table > tfoot > tr > td {
  25. padding: 8px;
  26. line-height: 1.42857143;
  27. vertical-align: top;
  28. border-top: 1px solid #dddddd;
  29. }
  30. .table > thead > tr > th {
  31. vertical-align: bottom;
  32. border-bottom: 2px solid #dddddd;
  33. }
  34. .table > caption + thead > tr:first-child > th,
  35. .table > colgroup + thead > tr:first-child > th,
  36. .table > thead:first-child > tr:first-child > th,
  37. .table > caption + thead > tr:first-child > td,
  38. .table > colgroup + thead > tr:first-child > td,
  39. .table > thead:first-child > tr:first-child > td {
  40. border-top: 0;
  41. }
  42. .table > tbody + tbody {
  43. border-top: 2px solid #dddddd;
  44. }
  45. .table .table {
  46. background-color: #ffffff;
  47. }
  48. .table-condensed > thead > tr > th,
  49. .table-condensed > tbody > tr > th,
  50. .table-condensed > tfoot > tr > th,
  51. .table-condensed > thead > tr > td,
  52. .table-condensed > tbody > tr > td,
  53. .table-condensed > tfoot > tr > td {
  54. padding: 5px;
  55. }
  56. .table-bordered {
  57. border: 1px solid #dddddd;
  58. }
  59. .table-bordered > thead > tr > th,
  60. .table-bordered > tbody > tr > th,
  61. .table-bordered > tfoot > tr > th,
  62. .table-bordered > thead > tr > td,
  63. .table-bordered > tbody > tr > td,
  64. .table-bordered > tfoot > tr > td {
  65. border: 1px solid #dddddd;
  66. }
  67. .table-bordered > thead > tr > th,
  68. .table-bordered > thead > tr > td {
  69. border-bottom-width: 2px;
  70. }
  71. .table-striped > tbody > tr:nth-of-type(odd) {
  72. background-color: #f9f9f9;
  73. }
  74. .table-hover > tbody > tr:hover {
  75. background-color: #f5f5f5;
  76. }
  77. table col[class*="col-"] {
  78. position: static;
  79. float: none;
  80. display: table-column;
  81. }
  82. table td[class*="col-"],
  83. table th[class*="col-"] {
  84. position: static;
  85. float: none;
  86. display: table-cell;
  87. }
  88. .table > thead > tr > td.active,
  89. .table > tbody > tr > td.active,
  90. .table > tfoot > tr > td.active,
  91. .table > thead > tr > th.active,
  92. .table > tbody > tr > th.active,
  93. .table > tfoot > tr > th.active,
  94. .table > thead > tr.active > td,
  95. .table > tbody > tr.active > td,
  96. .table > tfoot > tr.active > td,
  97. .table > thead > tr.active > th,
  98. .table > tbody > tr.active > th,
  99. .table > tfoot > tr.active > th {
  100. background-color: #f5f5f5;
  101. }
  102. .table-hover > tbody > tr > td.active:hover,
  103. .table-hover > tbody > tr > th.active:hover,
  104. .table-hover > tbody > tr.active:hover > td,
  105. .table-hover > tbody > tr:hover > .active,
  106. .table-hover > tbody > tr.active:hover > th {
  107. background-color: #e8e8e8;
  108. }
  109. .table > thead > tr > td.success,
  110. .table > tbody > tr > td.success,
  111. .table > tfoot > tr > td.success,
  112. .table > thead > tr > th.success,
  113. .table > tbody > tr > th.success,
  114. .table > tfoot > tr > th.success,
  115. .table > thead > tr.success > td,
  116. .table > tbody > tr.success > td,
  117. .table > tfoot > tr.success > td,
  118. .table > thead > tr.success > th,
  119. .table > tbody > tr.success > th,
  120. .table > tfoot > tr.success > th {
  121. background-color: #dff0d8;
  122. }
  123. .table-hover > tbody > tr > td.success:hover,
  124. .table-hover > tbody > tr > th.success:hover,
  125. .table-hover > tbody > tr.success:hover > td,
  126. .table-hover > tbody > tr:hover > .success,
  127. .table-hover > tbody > tr.success:hover > th {
  128. background-color: #d0e9c6;
  129. }
  130. .table > thead > tr > td.info,
  131. .table > tbody > tr > td.info,
  132. .table > tfoot > tr > td.info,
  133. .table > thead > tr > th.info,
  134. .table > tbody > tr > th.info,
  135. .table > tfoot > tr > th.info,
  136. .table > thead > tr.info > td,
  137. .table > tbody > tr.info > td,
  138. .table > tfoot > tr.info > td,
  139. .table > thead > tr.info > th,
  140. .table > tbody > tr.info > th,
  141. .table > tfoot > tr.info > th {
  142. background-color: #d9edf7;
  143. }
  144. .table-hover > tbody > tr > td.info:hover,
  145. .table-hover > tbody > tr > th.info:hover,
  146. .table-hover > tbody > tr.info:hover > td,
  147. .table-hover > tbody > tr:hover > .info,
  148. .table-hover > tbody > tr.info:hover > th {
  149. background-color: #c4e3f3;
  150. }
  151. .table > thead > tr > td.warning,
  152. .table > tbody > tr > td.warning,
  153. .table > tfoot > tr > td.warning,
  154. .table > thead > tr > th.warning,
  155. .table > tbody > tr > th.warning,
  156. .table > tfoot > tr > th.warning,
  157. .table > thead > tr.warning > td,
  158. .table > tbody > tr.warning > td,
  159. .table > tfoot > tr.warning > td,
  160. .table > thead > tr.warning > th,
  161. .table > tbody > tr.warning > th,
  162. .table > tfoot > tr.warning > th {
  163. background-color: #fcf8e3;
  164. }
  165. .table-hover > tbody > tr > td.warning:hover,
  166. .table-hover > tbody > tr > th.warning:hover,
  167. .table-hover > tbody > tr.warning:hover > td,
  168. .table-hover > tbody > tr:hover > .warning,
  169. .table-hover > tbody > tr.warning:hover > th {
  170. background-color: #faf2cc;
  171. }
  172. .table > thead > tr > td.danger,
  173. .table > tbody > tr > td.danger,
  174. .table > tfoot > tr > td.danger,
  175. .table > thead > tr > th.danger,
  176. .table > tbody > tr > th.danger,
  177. .table > tfoot > tr > th.danger,
  178. .table > thead > tr.danger > td,
  179. .table > tbody > tr.danger > td,
  180. .table > tfoot > tr.danger > td,
  181. .table > thead > tr.danger > th,
  182. .table > tbody > tr.danger > th,
  183. .table > tfoot > tr.danger > th {
  184. background-color: #f2dede;
  185. }
  186. .table-hover > tbody > tr > td.danger:hover,
  187. .table-hover > tbody > tr > th.danger:hover,
  188. .table-hover > tbody > tr.danger:hover > td,
  189. .table-hover > tbody > tr:hover > .danger,
  190. .table-hover > tbody > tr.danger:hover > th {
  191. background-color: #ebcccc;
  192. }
  193. .table-responsive {
  194. overflow-x: auto;
  195. min-height: 0.01%;
  196. }
  197. @media screen and (max-width: 767px) {
  198. .table-responsive {
  199. width: 100%;
  200. margin-bottom: 15px;
  201. overflow-y: hidden;
  202. -ms-overflow-style: -ms-autohiding-scrollbar;
  203. border: 1px solid #dddddd;
  204. }
  205. .table-responsive > .table {
  206. margin-bottom: 0;
  207. }
  208. .table-responsive > .table > thead > tr > th,
  209. .table-responsive > .table > tbody > tr > th,
  210. .table-responsive > .table > tfoot > tr > th,
  211. .table-responsive > .table > thead > tr > td,
  212. .table-responsive > .table > tbody > tr > td,
  213. .table-responsive > .table > tfoot > tr > td {
  214. white-space: nowrap;
  215. }
  216. .table-responsive > .table-bordered {
  217. border: 0;
  218. }
  219. .table-responsive > .table-bordered > thead > tr > th:first-child,
  220. .table-responsive > .table-bordered > tbody > tr > th:first-child,
  221. .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  222. .table-responsive > .table-bordered > thead > tr > td:first-child,
  223. .table-responsive > .table-bordered > tbody > tr > td:first-child,
  224. .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  225. border-left: 0;
  226. }
  227. .table-responsive > .table-bordered > thead > tr > th:last-child,
  228. .table-responsive > .table-bordered > tbody > tr > th:last-child,
  229. .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  230. .table-responsive > .table-bordered > thead > tr > td:last-child,
  231. .table-responsive > .table-bordered > tbody > tr > td:last-child,
  232. .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  233. border-right: 0;
  234. }
  235. .table-responsive > .table-bordered > tbody > tr:last-child > th,
  236. .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  237. .table-responsive > .table-bordered > tbody > tr:last-child > td,
  238. .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  239. border-bottom: 0;
  240. }
  241. }
  242. fieldset {
  243. padding: 0;
  244. margin: 0;
  245. border: 0;
  246. min-width: 0;
  247. }
  248. legend {
  249. display: block;
  250. width: 100%;
  251. padding: 0;
  252. margin-bottom: 20px;
  253. font-size: 21px;
  254. line-height: inherit;
  255. color: #333333;
  256. border: 0;
  257. border-bottom: 1px solid #e5e5e5;
  258. }
  259. label {
  260. display: inline-block;
  261. max-width: 100%;
  262. margin-bottom: 5px;
  263. font-weight: bold;
  264. }
  265. input[type="search"] {
  266. -webkit-box-sizing: border-box;
  267. -moz-box-sizing: border-box;
  268. box-sizing: border-box;
  269. }
  270. input[type="radio"],
  271. input[type="checkbox"] {
  272. margin: 4px 0 0;
  273. margin-top: 1px \9;
  274. line-height: normal;
  275. }
  276. input[type="file"] {
  277. display: block;
  278. }
  279. input[type="range"] {
  280. display: block;
  281. width: 100%;
  282. }
  283. select[multiple],
  284. select[size] {
  285. height: auto;
  286. }
  287. input[type="file"]:focus,
  288. input[type="radio"]:focus,
  289. input[type="checkbox"]:focus {
  290. outline: 5px auto -webkit-focus-ring-color;
  291. outline-offset: -2px;
  292. }
  293. output {
  294. display: block;
  295. padding-top: 7px;
  296. font-size: 14px;
  297. line-height: 1.42857143;
  298. color: #555555;
  299. }
  300. .form-control {
  301. display: block;
  302. width: 100%;
  303. height: 34px;
  304. padding: 6px 12px;
  305. font-size: 14px;
  306. line-height: 1.42857143;
  307. color: #555555;
  308. background-color: #ffffff;
  309. background-image: none;
  310. border: 1px solid #cccccc;
  311. border-radius: 4px;
  312. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  313. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  314. -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  315. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  316. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  317. }
  318. .btn {
  319. display: inline-block;
  320. margin-bottom: 0;
  321. font-weight: normal;
  322. text-align: center;
  323. vertical-align: middle;
  324. touch-action: manipulation;
  325. cursor: pointer;
  326. background-image: none;
  327. border: 1px solid transparent;
  328. white-space: nowrap;
  329. padding: 2px 6px;
  330. font-size: 13px;
  331. line-height: 1.42857143;
  332. border-radius: 100px;
  333. -webkit-user-select: none;
  334. -moz-user-select: none;
  335. -ms-user-select: none;
  336. user-select: none;
  337. }
  338. .btn:focus,
  339. .btn:active:focus,
  340. .btn.active:focus,
  341. .btn.focus,
  342. .btn:active.focus,
  343. .btn.active.focus {
  344. outline: 5px auto -webkit-focus-ring-color;
  345. outline-offset: -2px;
  346. }
  347. .btn:hover,
  348. .btn:focus,
  349. .btn.focus {
  350. color: #fff;
  351. text-decoration: none;
  352. }
  353. .btn:active,
  354. .btn.active {
  355. outline: 0;
  356. background-image: none;
  357. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  358. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  359. }
  360. .btn.disabled,
  361. .btn[disabled],
  362. fieldset[disabled] .btn {
  363. cursor: not-allowed;
  364. opacity: 0.65;
  365. filter: alpha(opacity=65);
  366. -webkit-box-shadow: none;
  367. box-shadow: none;
  368. }
  369. a.btn.disabled,
  370. fieldset[disabled] a.btn {
  371. pointer-events: none;
  372. }
  373. .btn-default {
  374. color: #333333;
  375. background-color: #ffffff;
  376. border-color: #cccccc;
  377. }
  378. .btn-default:focus,
  379. .btn-default.focus {
  380. color: #333333;
  381. background-color: #e6e6e6;
  382. border-color: #8c8c8c;
  383. }
  384. .btn-default:hover {
  385. color: #333333;
  386. background-color: #e6e6e6;
  387. border-color: #adadad;
  388. }
  389. .btn-default:active,
  390. .btn-default.active,
  391. .open > .dropdown-toggle.btn-default {
  392. color: #333333;
  393. background-color: #e6e6e6;
  394. border-color: #adadad;
  395. }
  396. .btn-default:active:hover,
  397. .btn-default.active:hover,
  398. .open > .dropdown-toggle.btn-default:hover,
  399. .btn-default:active:focus,
  400. .btn-default.active:focus,
  401. .open > .dropdown-toggle.btn-default:focus,
  402. .btn-default:active.focus,
  403. .btn-default.active.focus,
  404. .open > .dropdown-toggle.btn-default.focus {
  405. color: #333333;
  406. background-color: #d4d4d4;
  407. border-color: #8c8c8c;
  408. }
  409. .btn-default:active,
  410. .btn-default.active,
  411. .open > .dropdown-toggle.btn-default {
  412. background-image: none;
  413. }
  414. .btn-default.disabled:hover,
  415. .btn-default[disabled]:hover,
  416. fieldset[disabled] .btn-default:hover,
  417. .btn-default.disabled:focus,
  418. .btn-default[disabled]:focus,
  419. fieldset[disabled] .btn-default:focus,
  420. .btn-default.disabled.focus,
  421. .btn-default[disabled].focus,
  422. fieldset[disabled] .btn-default.focus {
  423. background-color: #ffffff;
  424. border-color: #cccccc;
  425. }
  426. .btn-default .badge {
  427. color: #ffffff;
  428. background-color: #333333;
  429. }
  430. .btn-primary {
  431. color: #ffffff;
  432. background-color: #ea2c13;
  433. border-color: #d22811;
  434. }
  435. .btn-primary:focus,
  436. .btn-primary.focus {
  437. color: #ffffff;
  438. background-color: #bb230f;
  439. border-color: #5c1108;
  440. }
  441. .btn-primary:hover {
  442. color: #ffffff;
  443. background-color: #bb230f;
  444. border-color: #9a1d0c;
  445. }
  446. .btn-primary:active,
  447. .btn-primary.active,
  448. .open > .dropdown-toggle.btn-primary {
  449. color: #ffffff;
  450. background-color: #bb230f;
  451. border-color: #9a1d0c;
  452. }
  453. .btn-primary:active:hover,
  454. .btn-primary.active:hover,
  455. .open > .dropdown-toggle.btn-primary:hover,
  456. .btn-primary:active:focus,
  457. .btn-primary.active:focus,
  458. .open > .dropdown-toggle.btn-primary:focus,
  459. .btn-primary:active.focus,
  460. .btn-primary.active.focus,
  461. .open > .dropdown-toggle.btn-primary.focus {
  462. color: #ffffff;
  463. background-color: #9a1d0c;
  464. border-color: #5c1108;
  465. }
  466. .btn-primary:active,
  467. .btn-primary.active,
  468. .open > .dropdown-toggle.btn-primary {
  469. background-image: none;
  470. }
  471. .btn-primary.disabled:hover,
  472. .btn-primary[disabled]:hover,
  473. fieldset[disabled] .btn-primary:hover,
  474. .btn-primary.disabled:focus,
  475. .btn-primary[disabled]:focus,
  476. fieldset[disabled] .btn-primary:focus,
  477. .btn-primary.disabled.focus,
  478. .btn-primary[disabled].focus,
  479. fieldset[disabled] .btn-primary.focus {
  480. background-color: #ea2c13;
  481. border-color: #d22811;
  482. }
  483. .btn-primary .badge {
  484. color: #ea2c13;
  485. background-color: #ffffff;
  486. }
  487. .section-title {
  488. margin-bottom: 27px;
  489. font-size: 25px;
  490. padding-top: 18px;
  491. font-family: "Roboto Slab", "Times New Roman", Times, serif;
  492. }
  493. div.dataTables_wrapper div.dataTables_filter input {
  494. margin-left: 0.5em;
  495. display: inline-block;
  496. width: auto;
  497. }
  498. #results-grid, #tblSeriesModels {
  499. background-color: rgb(255, 255, 255);
  500. border: 1px solid rgb(221, 221, 221);
  501. border-radius: 4px;
  502. padding: 10px;
  503. }
  504. table.dataTable {
  505. clear: both;
  506. margin-top: 6px !important;
  507. margin-bottom: 6px !important;
  508. max-width: none !important;
  509. border-collapse: separate !important;
  510. }
  511. .col-md-5 {
  512. float: left;
  513. }
  514. .col-md-7 {
  515. float: right;
  516. width: 60%;
  517. }
  518. /*termina tables*/