Advertisement
Guest User

Untitled

a guest
Jan 28th, 2020
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.84 KB | None | 0 0
  1. input::-webkit-outer-spin-button,
  2. input::-webkit-inner-spin-button {
  3. -webkit-appearance: none;
  4. margin: 0;
  5. }
  6.  
  7.  
  8. input:focus,
  9. select:focus,
  10. textarea:focus,
  11. button:focus {
  12. outline: none;
  13. }
  14.  
  15. .btnMain {
  16. background-color: #4CAF50; /* Green */
  17. border: none;
  18. color: white;
  19. padding: 15px 32px;
  20. border-radius: 100px 100px 100px 100px;
  21. -moz-border-radius: 100px 100px 100px 100px;
  22. -webkit-border-radius: 100px 100px 100px 100px;
  23. -webkit-box-shadow: 10px 10px 72px -10px rgba(0,0,0,0.75);
  24. -moz-box-shadow: 10px 10px 72px -10px rgba(0,0,0,0.75);
  25. box-shadow: 10px 10px 72px -10px rgba(0,0,0,0.75);
  26. border: 0px solid #000000;
  27. text-align: center;
  28. text-decoration: none;
  29. display: inline-block;
  30. font-size: 16px;
  31. margin: 4px 2px;
  32. cursor: pointer;
  33. }
  34.  
  35. .btn2 {
  36. background-color: #f44336;
  37. }
  38.  
  39. #buttons {
  40. padding: 10px;
  41. position: absolute;
  42. right: 8px;
  43. bottom: 120px;
  44. z-index: 10;
  45. }
  46.  
  47.  
  48. #control {
  49. padding: 10px;
  50. position: absolute;
  51. right: 10px;
  52. bottom: 185px;
  53. }
  54.  
  55. .targetName {
  56. position: absolute;
  57. top: 30%;
  58. left: 35%;
  59. transform: translate(-50%, -50%);
  60.  
  61. }
  62.  
  63. .targetID {
  64. position: absolute;
  65. top: 30%;
  66. left: 67%;
  67. width: 1px;
  68. transform: translate(-50%, -50%);
  69. }
  70.  
  71. .targetVehicle {
  72. position: absolute;
  73. top: 38%;
  74. left: 9%;
  75. width: 1px;
  76. transform: translate(-50%, -50%);
  77.  
  78. }
  79.  
  80. .targetVehiclePlates {
  81. position: absolute;
  82. top: 38%;
  83. left: 28%;
  84. width: 1px;
  85. transform: translate(-50%, -50%);
  86. }
  87.  
  88.  
  89. .targetVehicleColor {
  90. position: absolute;
  91. top: 38%;
  92. left: 62%;
  93. width: 1px;
  94. transform: translate(-50%, -50%);
  95. }
  96.  
  97. .targetVehicleComments {
  98. position: absolute;
  99. top: 47%;
  100. left: 9%;
  101. width: 1px;
  102. transform: translate(-50%, -50%);
  103. }
  104.  
  105. .copID {
  106. position: absolute;
  107. top: 63.3%;
  108. left: 9.2%;
  109. width: 1px;
  110. transform: translate(-50%, -50%);
  111. }
  112.  
  113. .copBadge {
  114. position: absolute;
  115. top: 63.3%;
  116. left: 67%;
  117. width: 1px;
  118. transform: translate(-50%, -50%);
  119. }
  120.  
  121. .ticketID {
  122. position: absolute;
  123. top: 70.5%;
  124. left: 10%;
  125. width: 1px;
  126. transform: translate(-50%, -50%);
  127. }
  128.  
  129. .ticketDate {
  130. position: absolute;
  131. top: 70.5%;
  132. left: 54%;
  133. width: 1px;
  134. transform: translate(-50%, -50%);
  135. }
  136.  
  137. .ticketPenalty {
  138. position: absolute;
  139. top: 77.1%;
  140. left: 81.5%;
  141. width: 1px;
  142. transform: translate(-50%, -50%);
  143. }
  144.  
  145. .ticketComments {
  146. position: absolute;
  147. top: 79%;
  148. left: 9%;
  149. width: 1px;
  150. transform: translate(-50%, -50%);
  151. }
  152.  
  153. .ticketValue {
  154. position: absolute;
  155. top: 87.7%;
  156. left: 50%;
  157. width: 1px;
  158. transform: translate(-50%, -50%);
  159. }
  160.  
  161. .copSign {
  162. position: absolute;
  163. top: 92%;
  164. left: 65%;
  165. width: 1px;
  166. background: transparent;
  167. border: none;
  168. transform: translate(-50%, -50%);
  169. }
  170.  
  171. .copSign input[type="text"] {
  172. background: transparent;
  173. border: none;
  174. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement