datachecker.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. html, body{
  2. width: 100%;
  3. margin: 0;
  4. height: 100%;
  5. padding:0;
  6. top: 0;
  7. }
  8. header {
  9. margin: 0;
  10. padding: 10px;
  11. width: 100%;
  12. height: 55px;
  13. top: 0;
  14. border-bottom: 1px solid #001a33;
  15. background-color: #004280;
  16. display: flex;
  17. flex-direction: column;
  18. align-items: center;
  19. }
  20. #logo {
  21. float: right;
  22. position: fixed;
  23. top: 3px;
  24. left: 20px;
  25. }
  26. h1 {
  27. color: white;
  28. margin: 10px 0;
  29. }
  30. #main {
  31. width: 80%;
  32. margin: 50px 10%;
  33. }
  34. h2 {
  35. color: #666666;
  36. }
  37. #submit-file {
  38. display: flex;
  39. flex-direction: column;
  40. align-items: center;
  41. }
  42. #submit-form {
  43. width: 600px;
  44. display: flex;
  45. flex-direction: column;
  46. align-items: center;
  47. border: 2px solid #0047b3;
  48. border-radius: 5px;
  49. box-shadow: 3px 5px 5px rgb(166, 166, 166, 0.5);
  50. padding: 30px;
  51. }
  52. #submit-form label {
  53. font-size: 1.2em;
  54. }
  55. #submit-form input {
  56. margin-top: 1em;
  57. font-size: 1em;
  58. }
  59. #submit-form button {
  60. margin-top: 45px;
  61. font-size: 1.1em;
  62. }
  63. .error {
  64. color: red;
  65. font-weight: 700;
  66. }
  67. .valid {
  68. color: green;
  69. }
  70. .datatable {
  71. width: 100% !important;
  72. }
  73. .annotation {
  74. color: #595959;
  75. font-size: 0.9em;
  76. }
  77. .please-wait {
  78. margin-top: 30px;
  79. display: flex;
  80. flex-direction: row;
  81. align-items: center;
  82. }
  83. footer {
  84. color: #004280;
  85. width: 100%;
  86. text-align: center;
  87. position: fixed;
  88. height: 50px;
  89. bottom: 0;
  90. left: 0;
  91. right: 0;
  92. margin: 0;
  93. background-color: #e6e6e6;
  94. padding-top: 23px;
  95. }