stylesheet.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. .content {
  2. position: relative;
  3. min-height: 70vh;
  4. display: block;
  5. }
  6. .popup {
  7. visibility: hidden;
  8. }
  9. .shadow {
  10. background-color: rgba(0,0,0,0.25);
  11. position: fixed;
  12. top: 0;
  13. left: 0;
  14. height: 100%;
  15. width: 100%;
  16. }
  17. .frame {
  18. border: 1px solid black;
  19. position: fixed;
  20. top: 50%;
  21. left: 50%;
  22. transform: translate(-50%, -50%);
  23. padding: 10px;
  24. background-color: white;
  25. animation: fadein 1.2s;
  26. overflow: auto;
  27. max-height: 95%;
  28. min-width: 95%;
  29. }
  30. .infobox {
  31. position: absolute;
  32. bottom: 0;
  33. left: 0;
  34. width: 100%;
  35. overflow-x: auto;
  36. white-space: nowrap;
  37. }
  38. .info {
  39. border-radius: 25px;
  40. opacity: .8;
  41. padding: 5px;
  42. margin: 5px;
  43. display: inline-block;
  44. background-color: #8383ff;
  45. text-align: center;
  46. cursor: pointer;
  47. animation: fadein 1.2s;
  48. }
  49. @keyframes fadein {
  50. from { opacity: 0; }
  51. to { opacity: .8; }
  52. }
  53. #map {
  54. height: 90vh;
  55. }
  56. #tracks {
  57. list-style-type: none;
  58. margin: 5px;
  59. display: grid;
  60. grid-gap: 5px;
  61. grid-auto-flow: dense;
  62. grid-template-columns: repeat(auto-fit,minmax(150px, 1fr));
  63. }
  64. .demo-container {
  65. box-sizing: border-box;
  66. width: 95%;
  67. height: 450px;
  68. padding: 20px 15px 15px 15px;
  69. margin: 15px auto 30px auto;
  70. border: 1px solid #ddd;
  71. background: linear-gradient(#f6f6f6 0, #fff 50px);
  72. box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  73. }
  74. .demo-placeholder {
  75. width: 100%;
  76. height: 100%;
  77. font-size: 14px;
  78. line-height: 1.2em;
  79. }
  80. .legend table {
  81. border-spacing: 5px;
  82. }
  83. #map .cesium-widget-credits{
  84. position: fixed;
  85. top: -1000px;
  86. }