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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. .search-container{
  2. background-image: url("../Mask_Group_2.png");
  3. display: flex;
  4. flex-direction: column;
  5. justify-content: center;
  6. padding: 2rem 4rem;
  7. }
  8. .search-container .logo{
  9. height: auto;
  10. width: 8%;
  11. }
  12. .search-container h6{
  13. color: white;
  14. margin-bottom: 2px;
  15. }
  16. .search-container #searchInput{
  17. border-radius: 21px;
  18. border: none;
  19. padding-left: 20px !important;
  20. flex: 1;
  21. }
  22. .search-container #searchInput::before {
  23. content: "\f002"; /* Unicode for Font Awesome search icon */
  24. font-family: 'FontAwesome';
  25. position: absolute;
  26. left: 10px;
  27. top: 50%;
  28. transform: translateY(-50%);
  29. pointer-events: none;
  30. }
  31. .button-23 {
  32. background-color: #1F9027;
  33. border-radius: 8px;
  34. box-sizing: border-box;
  35. color: white;
  36. cursor: pointer;
  37. display: inline-block;
  38. font-family: Circular, -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
  39. font-size: 15px;
  40. font-weight: 600;
  41. line-height: 20px;
  42. margin: 0;
  43. outline: none;
  44. padding: 13px 23px;
  45. position: relative;
  46. text-align: center;
  47. text-decoration: none;
  48. touch-action: manipulation;
  49. transition: box-shadow .2s, -ms-transform .1s, -webkit-transform .1s, transform .1s;
  50. user-select: none;
  51. -webkit-user-select: none;
  52. width: auto;
  53. }
  54. .button-23:focus-visible {
  55. box-shadow: #222222 0 0 0 2px, rgba(255, 255, 255, 0.8) 0 0 0 4px;
  56. transition: box-shadow .2s;
  57. }
  58. .button-23:active {
  59. background-color: #F7F7F7;
  60. border-color: #000000;
  61. transform: scale(.96);
  62. }
  63. .button-23:disabled {
  64. border-color: #DDDDDD;
  65. color: #DDDDDD;
  66. cursor: not-allowed;
  67. opacity: 1;
  68. }
  69. .map-svg {
  70. display: block;
  71. margin: 0 auto;
  72. filter: drop-shadow(-16px 11px 2px rgba(0, 0, 0, 0.5));
  73. }
  74. .map-svg a {
  75. transition: all 1s;
  76. transform-origin: 50% 50%;
  77. text-decoration: none;
  78. filter: drop-shadow(3px 10px 5px rgb(0 0 0 / 0.4));
  79. }
  80. .map-svg .disable {
  81. fill: gray !important;
  82. }
  83. .map-svg .disable text{
  84. color: gray !important;
  85. }
  86. .map-svg .pahang-barat {
  87. fill: #427bba;
  88. }
  89. .map-svg .pahang-tengah {
  90. fill: #144172;
  91. }
  92. .map-svg .pahang-timur {
  93. fill: #0c6088;
  94. }
  95. .map-svg .label-text {
  96. font-size: 35px;
  97. fill: white;
  98. transform: translate(0,
  99. 3px);
  100. /* adjust vertical position to centre text */
  101. }
  102. .map-svg .label-text-cameron {
  103. font-size: 20px;
  104. fill: white;
  105. transform: translate(0,
  106. 3px);
  107. /* adjust vertical position to centre text */
  108. }
  109. .hidden {
  110. display: none;
  111. }
  112. html,
  113. body {
  114. height: 370px;
  115. padding: 0;
  116. margin: 0;
  117. }
  118. #map {
  119. height: 360px;
  120. width: 300px;
  121. overflow: hidden;
  122. float: left;
  123. border: thin solid #333;
  124. }
  125. #capture {
  126. height: 360px;
  127. width: 480px;
  128. overflow: hidden;
  129. float: left;
  130. background-color: #ECECFB;
  131. border: thin solid #333;
  132. border-left: none;
  133. }
  134. #pdfViewer {
  135. width: 100%;
  136. height: 600px;
  137. }