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.

app.css 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /* CSS */
  2. .button-23 {
  3. background-color: #FFFFFF;
  4. border: 1px solid #222222;
  5. border-radius: 8px;
  6. box-sizing: border-box;
  7. color: #222222;
  8. cursor: pointer;
  9. display: inline-block;
  10. font-family: Circular, -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
  11. font-size: 15px;
  12. font-weight: 600;
  13. line-height: 20px;
  14. margin: 0;
  15. outline: none;
  16. padding: 13px 23px;
  17. position: relative;
  18. text-align: center;
  19. text-decoration: none;
  20. touch-action: manipulation;
  21. transition: box-shadow .2s, -ms-transform .1s, -webkit-transform .1s, transform .1s;
  22. user-select: none;
  23. -webkit-user-select: none;
  24. width: auto;
  25. }
  26. .button-23:focus-visible {
  27. box-shadow: #222222 0 0 0 2px, rgba(255, 255, 255, 0.8) 0 0 0 4px;
  28. transition: box-shadow .2s;
  29. }
  30. .button-23:active {
  31. background-color: #F7F7F7;
  32. border-color: #000000;
  33. transform: scale(.96);
  34. }
  35. .button-23:disabled {
  36. border-color: #DDDDDD;
  37. color: #DDDDDD;
  38. cursor: not-allowed;
  39. opacity: 1;
  40. }
  41. .map-svg {
  42. display: block;
  43. margin: 0 auto;
  44. filter: drop-shadow(-16px 11px 2px rgba(0, 0, 0, 0.5));
  45. }
  46. .map-svg a {
  47. transition: all 1s;
  48. transform-origin: 50% 50%;
  49. text-decoration: none;
  50. filter: drop-shadow(3px 10px 5px rgb(0 0 0 / 0.4));
  51. }
  52. .map-svg .pahang-barat {
  53. fill: #427bba;
  54. }
  55. .map-svg .pahang-tengah {
  56. fill: #144172;
  57. }
  58. .map-svg .pahang-timur {
  59. fill: #0c6088;
  60. }
  61. .map-svg .label-text {
  62. font-size: 35px;
  63. fill: white;
  64. transform: translate(0,
  65. 3px);
  66. /* adjust vertical position to centre text */
  67. }
  68. .map-svg .label-text-cameron {
  69. font-size: 20px;
  70. fill: white;
  71. transform: translate(0,
  72. 3px);
  73. /* adjust vertical position to centre text */
  74. }
  75. .hidden {
  76. display: none;
  77. }
  78. html,
  79. body {
  80. height: 370px;
  81. padding: 0;
  82. margin: 0;
  83. }
  84. #map {
  85. height: 360px;
  86. width: 300px;
  87. overflow: hidden;
  88. float: left;
  89. border: thin solid #333;
  90. }
  91. #capture {
  92. height: 360px;
  93. width: 480px;
  94. overflow: hidden;
  95. float: left;
  96. background-color: #ECECFB;
  97. border: thin solid #333;
  98. border-left: none;
  99. }
  100. #pdfViewer {
  101. width: 100%;
  102. height: 600px;
  103. }