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.1KB

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