style.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. body {
  2. margin: 0;
  3. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
  4. 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
  5. sans-serif;
  6. -webkit-font-smoothing: antialiased;
  7. -moz-osx-font-smoothing: grayscale;
  8. }
  9. code {
  10. font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
  11. monospace;
  12. }
  13. h1,
  14. h2,
  15. h3 {
  16. font-weight: 400;
  17. margin: 0;
  18. padding: 0;
  19. }
  20. body {
  21. background-color: #121212;
  22. color: #e8e8e8 ;
  23. }
  24. html, body, #root, .app {
  25. height: 100%;
  26. }
  27. .app {
  28. display: flex;
  29. flex-direction: column;
  30. }
  31. .title {
  32. font-size: 28px;
  33. text-align: center;
  34. }
  35. .header {
  36. flex: 0 0 auto;
  37. }
  38. .section {
  39. flex: 1;
  40. display: flex;
  41. align-items: stretch
  42. }
  43. .main {
  44. flex: 1;
  45. margin: 22px 48px;
  46. display: flex;
  47. flex-direction: column;
  48. }
  49. .slide {
  50. flex: 0 0 260px;
  51. }
  52. select,
  53. input {
  54. margin: 0 8px;
  55. background: transparent;
  56. padding: 4px 10px;
  57. border: 1px solid #2e2e2e;
  58. outline: none;
  59. color: inherit;
  60. border-radius: 3px;
  61. }
  62. .cesium-viewer-fullscreenContainer,
  63. .cesium-viewer-bottom {
  64. display: none !important;
  65. }