You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

101 lines
1.5 KiB

  1. body {
  2. margin: 0;
  3. font-family: Arial, Helvetica, sans-serif;
  4. }
  5. .container {
  6. margin: 20px auto;
  7. max-width: 800px;
  8. }
  9. .topnav {
  10. overflow: hidden;
  11. background-color: #333;
  12. }
  13. .topnav a {
  14. float: left;
  15. color: #f2f2f2;
  16. text-align: center;
  17. padding: 14px 16px;
  18. text-decoration: none;
  19. font-size: 17px;
  20. }
  21. .topnav a:hover {
  22. background-color: #ddd;
  23. color: black;
  24. }
  25. .topnav a.active {
  26. background-color: #4CAF50;
  27. color: white;
  28. }
  29. #passes {
  30. font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  31. border-collapse: collapse;
  32. max-width: 500px;
  33. width: 100%;
  34. margin: auto;
  35. }
  36. #passes.img-grid {
  37. max-width: 700px;
  38. }
  39. #passes td,
  40. #passes th {
  41. border: 1px solid #ddd;
  42. padding: 8px;
  43. }
  44. #passes tr:nth-child(even) {
  45. background-color: #f2f2f2;
  46. }
  47. /* #passes tr:hover {background-color: #ddd;} */
  48. #passes th {
  49. padding-top: 12px;
  50. padding-bottom: 12px;
  51. background-color: #4CAF50;
  52. text-align: center;
  53. color: white;
  54. }
  55. #passes tr.inactive {
  56. color: lightgray;
  57. }
  58. #satimg {
  59. max-width: 200px;
  60. max-height: 200px;
  61. width: 100%;
  62. object-fit: cover;
  63. }
  64. #satimgdiv {
  65. width: 100%;
  66. height: 100%;
  67. max-width: 200px;
  68. background-color: antiquewhite;
  69. /* margin: 10px; */
  70. display: inline-block;
  71. vertical-align: middle;
  72. text-align: center;
  73. }
  74. footer {
  75. /* position: absolute; */
  76. margin: 20px;
  77. bottom: 0;
  78. max-width: 100%;
  79. text-align: center;
  80. }
  81. img.img-footer {
  82. max-width: 100%;
  83. }