Advertisement
CusiUBS

N64 Overrides for GC

Apr 18th, 2021
996
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.97 KB | None | 0 0
  1. /*Start N64 Styling*/
  2. .controller.gc
  3.  {
  4.     background: url(n64-assets/base.svgz);
  5.     height: 851px;
  6.     width: 810px;
  7. }
  8.  
  9. .gc
  10.  .bumpers{
  11.     position: absolute;
  12.     height: 100px;
  13.     width: 664px;
  14.     top: 140px;
  15.     left: 73px
  16. }
  17.  
  18. .gc
  19.  .bumper{
  20.     background: url(n64-assets/buttons.svgz);
  21.     height: 68px;
  22.     width: 174px;
  23.     display: block;
  24.     position: absolute;
  25. }
  26.  
  27. .gc
  28.  .bumper.right{
  29.     right: 0;
  30.     transform: rotateY(180deg);
  31. }
  32.  
  33. .gc
  34.  .triggers{
  35.     position: absolute;
  36.     left: 379px;
  37. }
  38.  
  39. .gc
  40.  .trigger.left{
  41.     width: 52px;
  42.     height: 88px;
  43.     background: url(n64-assets/buttons.svgz);
  44.     display: block;
  45.     background-position-y: -72px;
  46. }
  47.  
  48. .gc
  49.  .dpad{
  50.     width: 150px;
  51.     height: 150px;
  52.     /*     background: #FF00008F; */
  53.     position: absolute;
  54.     top: 281px;
  55.     left: 106px;
  56. }
  57.  
  58. .gc
  59.  .dpad .face{
  60.     background: url(n64-assets/buttons.svgz);
  61.     height: 64px;
  62.     width: 44px;
  63.     background-position-y: -164px;
  64.     display: block;
  65.     position: absolute
  66. }
  67.  
  68. .gc
  69.  .dpad .face.up{
  70.     left: 32px
  71. }
  72.  
  73.  
  74. .gc
  75.  .dpad .face.down{
  76.     transform: rotate(180deg);
  77.     left: 32px;
  78.     top: 65px
  79. }
  80.  
  81. .gc
  82.  .dpad .face.left{
  83.     transform: rotate(-90deg);
  84.     top: 33px
  85. }
  86.  
  87. .gc
  88.  .dpad .face.right{
  89.     transform: rotate(90deg);
  90.     top: 33px;
  91.     left: 64px;
  92. }
  93.  
  94. /* We're using the node used for a controller's system button here */
  95. .gc
  96.  .meta{
  97.     background: url(n64-assets/buttons.svgz);
  98.     width: 55px;
  99.     height: 55px;
  100.     background-position-y: -282px;
  101.     position: absolute;
  102.     left: 377px;
  103.     top: 344px
  104. }
  105.  
  106. .gc
  107.  .abxy{
  108.     position: absolute;
  109.     top: 245px;
  110.     left: 609px
  111. }
  112.  
  113. .gc
  114.  .abxy .button{
  115.     background: url(n64-assets/buttons.svgz);
  116.     width: 47px;
  117.     height: 47px;
  118.     background-position-y: -231px;
  119.     display: block;
  120.     position: absolute;
  121. }
  122.  
  123. .gc
  124.  .abxy .button.a{
  125.     left: 45px
  126. }
  127.  
  128. .gc
  129.  .abxy .button.b{
  130.     left: 44px;
  131.     top: 92px;
  132.     transform: rotate(180deg);
  133. }
  134.  
  135. .gc
  136.  .abxy .button.x{
  137.     top: 45px;
  138.     left: -2px;
  139.     transform: rotate(-90deg)
  140. }
  141.  
  142. .gc
  143.  .abxy .button.y{
  144.     left: 91px;
  145.     top: 46px;
  146.     transform: rotate(90deg);
  147. }
  148.  
  149. .gc
  150.  .arrows{
  151.     position: absolute;
  152.     top: 335px;
  153.     left: 529px
  154. }
  155.  
  156. .gc
  157.  .back, .gc
  158.  .start{
  159.     background: url(n64-assets/buttons.svgz);
  160.     width: 61px;
  161.     height: 61px;
  162.     background-position-y: -341px;
  163.     display: block;
  164.     position: relative;
  165. }
  166.  
  167. .gc
  168.  .start{
  169.     background-position-y: -405px;
  170.     top: -5px;
  171.     left: 56px
  172. }
  173.  
  174. .gc
  175.  .sticks{
  176.     position: absolute;
  177.     top: 469px;
  178.     left: 346px;
  179. }
  180.  
  181. .gc
  182.  .stick.left{
  183.     background: url(n64-assets/buttons.svgz);
  184.     width: 73px;
  185.     height: 73px;
  186.     display: block;
  187.     background-position-y: 73px
  188. }
  189. .gc
  190.  .stick.right{
  191.     display: none;
  192. }
  193.  
  194. .gc
  195.  .button,
  196. .gc
  197.  .face,
  198. .gc
  199.  .meta,
  200. .gc
  201.  .bumper,
  202. .gc
  203.  .trigger,
  204. .gc
  205.  .arrows *{
  206.     opacity: 0
  207. }
  208.  
  209. .gc
  210.  .pressed{
  211.     opacity: 1
  212. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement