Advertisement
castletest

Untitled

Apr 26th, 2019
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.22 KB | None | 0 0
  1. @font-face {
  2. font-family: "Roboto";
  3. src: url("Roboto.ttf");
  4. }
  5.  
  6. #trainercontainer {
  7. position: absolute;
  8. right: 0%;
  9. }
  10.  
  11. p {
  12. font-family: "Roboto";
  13. }
  14.  
  15. .traineroption {
  16. display: flex;
  17. align-items: center;
  18. font-size: 20px;
  19. margin: 4px;
  20. color: cyan;
  21. height: 40px;
  22. width: 350px;
  23. background: rgba(0, 0, 0, 0.75);
  24. margin-top: -4px;
  25. padding-left: 5px;
  26. }
  27.  
  28. .traineroption.trainertitle {
  29. justify-content: center;
  30. font-size: 25px;
  31. height: 75px;
  32. background: rgba(0, 0, 128, 0.8);
  33. text-shadow: 0 0 3px #e04040;
  34. }
  35.  
  36. .traineroption.trainertitle:after {
  37. margin-left: 0;
  38. margin-right: 0;
  39. }
  40.  
  41. .traineroption.selected {
  42. background: rgba(200, 200, 200, 0.95);
  43. color: red;
  44. }
  45.  
  46.  
  47. .traineroption.selected.menuText:after {
  48. content: "";
  49. margin-left: auto;
  50. margin-right: 10px;
  51. }
  52.  
  53. .menuText:after{
  54. content: "";
  55. margin-left: auto;
  56. margin-right: 10px;
  57. }
  58.  
  59.  
  60. .stateON:after {
  61. content: "ON";
  62. margin-left: auto;
  63. margin-right: 10px;
  64. }
  65.  
  66. .hidden{
  67. display: none !important;
  68. }
  69.  
  70.  
  71. .stateOFF:after {
  72. content: "OFF";
  73. margin-left: auto;
  74. margin-right: 10px;
  75. }
  76.  
  77.  
  78. .ogrp_mainMenu {
  79. border-radius: 32px;
  80. box-shadow: -1px -1px 60px -1px rgba(0,0,0,1);
  81. cursor: pointer;
  82. background-image: url(https://i.imgur.com/LbVX7zZ.png);
  83. background-size: cover;
  84. }
  85.  
  86.  
  87.  
  88.  
  89.  
  90. .pageindicator {
  91. font-size: 20px;
  92. text-align: center;
  93. color: cyan;
  94. }
  95.  
  96. #trainertitlecontainer{
  97. display: flex;
  98. align-items: center;
  99. justify-content: space-around;
  100. font-size: 20px;
  101. margin: 4px;
  102. color: cyan;
  103. height: 65px;
  104. width: 350px;
  105. margin-top: -4px;
  106. padding-left: 5px;
  107.  
  108. background: rgba( 0, 0, 328, 0.95 );
  109. background: linear-gradient( to bottom, rgba( 0, 0, 255, 1 ), rgba( 0, 0, 128, 0.95 ) );
  110.  
  111. text-shadow: 0 0 3px #e04040;
  112. justify-content: center;
  113. }
  114.  
  115.  
  116. #trainertitlecontainer:after {
  117. margin-left: 0;
  118. margin-right: 0;
  119. }
  120.  
  121. .trainertitle{
  122. font-size: 26px;
  123. flex-grow: 1;
  124. }
  125.  
  126. #pageindicator{
  127. font-size: 16px;
  128. margin-right: 10px;
  129. color: red;
  130. }
  131.  
  132.  
  133.  
  134. /* Speedometer CSS */
  135.  
  136.  
  137. #speedcontainer {
  138. position: absolute;
  139. bottom: 35px;
  140. right: 45px;
  141. }
  142.  
  143. #speedcontainer p{
  144. margin: 0 auto;
  145. text-align: center;
  146. }
  147.  
  148. .speedtext {
  149. color: red;
  150. font-size: 60px;
  151. text-shadow: 2px 2px 0px #000000; /* Text outline */
  152. }
  153.  
  154. .speedsuffix {
  155. color: red;
  156. font-size: 30px;
  157. text-shadow: 2px 2px 0px #000000; /* Text outline */
  158. }
  159.  
  160. .circle {
  161. border-radius: 50%;
  162. width: 145px;
  163. height: 145px;
  164. background-color:rgba(0, 0, 0, 0.85);
  165. border: 3px solid red;
  166. }
  167.  
  168.  
  169. /* Voice CSS */
  170. #voicecontainer {
  171. margin: auto;
  172. display: flex;
  173. flex-direction: column;
  174. align-items: center;
  175. position: absolute;
  176. width: 50%;
  177. left: 25%;
  178. }
  179.  
  180. .voiceHeader {
  181. margin: auto;
  182. font-size: 20px;
  183. color: red;
  184. font-weight:bolder;
  185. text-shadow: 2px 2px 2px #000000;
  186. }
  187.  
  188. .voicename {
  189. margin-top: 0px;
  190. margin-bottom: 0px;
  191. font-size: 18px;
  192. color: green;
  193. font-weight: bolder;
  194. text-shadow: 2px 2px 2px #000000;
  195. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement