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 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. }