style.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. html {
  2. box-sizing: border-box;
  3. font-size: 62.5%
  4. }
  5. body {
  6. width: 900px;
  7. background-color: black;
  8. color: white;
  9. font-family: 'Helvetica', 'Arial', sans-serif;
  10. font-size: 1.6em;
  11. font-weight: 300;
  12. line-height: 1.6;
  13. margin: 0 auto;
  14. text-align: center;
  15. }
  16. table {
  17. border-collapse: collapse;
  18. width: 97%;
  19. margin: 10px;
  20. }
  21. tr {
  22. border-bottom: 1px solid gray;
  23. }
  24. img {
  25. height: 50px;
  26. width: auto;
  27. padding-right: 16px;
  28. }
  29. .container{
  30. margin: 0 auto;
  31. max-width: 100.0rem;
  32. padding: 0 2.0rem;
  33. position: relative;
  34. width: 100%
  35. }
  36. .panel {
  37. /* margin: 10px; */
  38. background-color: #002e63;
  39. }
  40. .navbar {
  41. display: flex;
  42. justify-content: space-between;
  43. align-items: center;
  44. padding: 5px;
  45. background-color: #2a52be;
  46. }
  47. .tab {
  48. overflow: hidden;
  49. background-color: #2a52be;
  50. }
  51. .tab button {
  52. background-color: inherit;
  53. color: inherit;
  54. float: left;
  55. border: none;
  56. outline: none;
  57. cursor: pointer;
  58. padding: 14px 16px;
  59. transition: 0.3s;
  60. border-radius: 18px;
  61. }
  62. .tab button:hover {
  63. background-color: #1d2951;
  64. color: white;
  65. }
  66. .tab button.active {
  67. background-color: #003399;
  68. color: white;
  69. }
  70. .tabcontent {
  71. display: none;
  72. padding: 6px 12px;
  73. border-top: none;
  74. background-color: #002e63;
  75. text-align: left;
  76. }
  77. .queuecontent {
  78. display: block;
  79. padding: 6px 12px;
  80. border-top: none;
  81. background-color: #002e63;
  82. text-align: left;
  83. }
  84. .button {
  85. border-radius: 25px;
  86. border: none;
  87. background-color: inherit;
  88. color: white;
  89. padding: 4px 16px;
  90. text-align: center;
  91. text-decoration: none;
  92. display: inline-block;
  93. font-size: 16px;
  94. margin: 4px 2px;
  95. transition-duration: 0.4s;
  96. cursor: pointer;
  97. box-shadow: 0 5px #999;
  98. }
  99. .button2 {
  100. background-color: #002e63;
  101. color: inherit;
  102. border: 2px solid #008CBA;
  103. }
  104. .button2:hover {
  105. background-color: #008CBA;
  106. color: white;
  107. }
  108. .button2:active {
  109. background-color: #008CBA;
  110. box-shadow: 0 5px #666;
  111. transform: translateY(2px);
  112. }
  113. a:link {
  114. color: white;
  115. }
  116. a:visited {
  117. color: white;
  118. }
  119. .bar-container {
  120. padding:0.01em;
  121. }
  122. .bar-blue {
  123. color:#fff!important;
  124. background-color:#2196F3!important
  125. }
  126. .bar-light-grey {
  127. color:#000!important;
  128. background-color:#f1f1f1!important
  129. }
  130. .bar-tiny {
  131. font-size:10px!important
  132. }
  133. .bar-round {
  134. border-radius:16px
  135. }
  136. .milestone-marker {
  137. position: absolute;
  138. top: -1px;
  139. z-index: 1;
  140. }