style.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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. .button {
  78. border-radius: 25px;
  79. border: none;
  80. background-color: inherit;
  81. color: white;
  82. padding: 4px 16px;
  83. text-align: center;
  84. text-decoration: none;
  85. display: inline-block;
  86. font-size: 16px;
  87. margin: 4px 2px;
  88. transition-duration: 0.4s;
  89. cursor: pointer;
  90. box-shadow: 0 5px #999;
  91. }
  92. .button2 {
  93. background-color: #002e63;
  94. color: inherit;
  95. border: 2px solid #008CBA;
  96. }
  97. .button2:hover {
  98. background-color: #008CBA;
  99. color: white;
  100. }
  101. .button2:active {
  102. background-color: #008CBA;
  103. box-shadow: 0 5px #666;
  104. transform: translateY(2px);
  105. }
  106. a:link {
  107. color: white;
  108. }
  109. a:visited {
  110. color: white;
  111. }
  112. .bar-container {
  113. padding:0.01em;
  114. }
  115. .bar-blue {
  116. color:#fff!important;
  117. background-color:#2196F3!important
  118. }
  119. .bar-light-grey {
  120. color:#000!important;
  121. background-color:#f1f1f1!important
  122. }
  123. .bar-tiny {
  124. font-size:10px!important
  125. }
  126. .bar-round {
  127. border-radius:16px
  128. }