InfoBoxDescription.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. @import url(../shared.css);
  2. body {
  3. margin: 0;
  4. padding: 0;
  5. }
  6. .cesium-infoBox-description {
  7. font-family: sans-serif;
  8. font-size: 13px;
  9. padding: 4px 10px;
  10. margin-right: 4px;
  11. color: #edffff;
  12. }
  13. .cesium-infoBox-description a:link,
  14. .cesium-infoBox-description a:visited,
  15. .cesium-infoBox-description a:hover,
  16. .cesium-infoBox-description a:active {
  17. color: #edffff;
  18. }
  19. .cesium-infoBox-description table {
  20. color: #edffff;
  21. }
  22. .cesium-infoBox-defaultTable {
  23. width: 100%;
  24. color: #edffff;
  25. }
  26. .cesium-infoBox-defaultTable tr:nth-child(odd) {
  27. background-color: rgba(84, 84, 84, 0.8);
  28. }
  29. .cesium-infoBox-defaultTable tr:nth-child(even) {
  30. background-color: rgba(84, 84, 84, 0.25);
  31. }
  32. .cesium-infoBox-defaultTable th {
  33. font-weight: normal;
  34. padding: 3px;
  35. vertical-align: middle;
  36. text-align: center;
  37. }
  38. .cesium-infoBox-defaultTable td {
  39. padding: 3px;
  40. vertical-align: middle;
  41. text-align: left;
  42. }
  43. .cesium-infoBox-description-lighter {
  44. color: #000000;
  45. }
  46. .cesium-infoBox-description-lighter a:link,
  47. .cesium-infoBox-description-lighter a:visited,
  48. .cesium-infoBox-description-lighter a:hover,
  49. .cesium-infoBox-description-lighter a:active {
  50. color: #000000;
  51. }
  52. .cesium-infoBox-description-lighter table {
  53. color: #000000;
  54. }
  55. .cesium-infoBox-defaultTable-lighter {
  56. width: 100%;
  57. color: #000000;
  58. }
  59. .cesium-infoBox-defaultTable-lighter tr:nth-child(odd) {
  60. background-color: rgba(179, 179, 179, 0.8);
  61. }
  62. .cesium-infoBox-defaultTable-lighter tr:nth-child(even) {
  63. background-color: rgba(179, 179, 179, 0.25);
  64. }
  65. .cesium-infoBox-loadingContainer {
  66. margin: 5px;
  67. text-align: center;
  68. }
  69. .cesium-infoBox-loading {
  70. display: inline-block;
  71. background-image: url(../Images/info-loading.gif);
  72. width: 16px;
  73. height: 11px;
  74. }