Advertisement
n128

Winter Server - CSS

May 13th, 2017
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 32.90 KB | None | 0 0
  1.  
  2.   /**************
  3.   * General CSS *
  4.   **************/
  5.   body
  6.   {
  7.     background: #C4CCDF !important;
  8.     font-family:Arial, Helvetica;
  9.   }
  10.  
  11.   .mainmenuwrapper
  12.   {
  13.     background: url("http://i.imgur.com/WHU1GM0.png?1") center right no-repeat;
  14.   }
  15.  
  16.   .ps-room.ps-room-light
  17.   {
  18.     background: transparent;
  19.     border-color: #000;
  20.     z-index: 2;
  21.   }
  22.  
  23.   .textbox
  24.   {
  25.     border: 1px solid #000;
  26.     box-shadow: none;
  27.     background: #F9F9F9;
  28.   }
  29.  
  30.   .textbox:hover
  31.   {
  32.     background: #FFF;
  33.     border: 1px solid #000;
  34.     box-shadow: none;
  35.   }
  36.  
  37.   .textbox:focus
  38.   {
  39.     border-color: #78C2CF;
  40.     box-shadow: 0px 1px 2px #D2D2D2 inset, 0px 0px 5px #C4CCDF;
  41.   }
  42.  
  43.   /* Header CSS */
  44.  
  45.   .header
  46.   {
  47.     background: rgba(0, 0, 0, 0.6);
  48.   }
  49.  
  50.   .userbar .username
  51.   {
  52.     text-shadow: 1px 1px 0px #000, 1px -1px 0px #000, -1px 1px 0px #000, -1px -1px 0px #000;
  53.   }
  54.  
  55.   .header button
  56.   {
  57.     border: 1px solid #000;
  58.     background: transparent -moz-linear-gradient(center top , #9AE1EF, #79C5D2);
  59.     background: linear-gradient(to bottom,hsl(190, 73%, 77%),hsl(189, 50%, 65%));
  60.     color: #3D3C41;
  61.     text-shadow: 0px -1px 0px #89CFDC;
  62.     border-radius: 3px;
  63.     padding: 3px 5px;
  64.   }
  65.  
  66.   .header button:hover
  67.   {
  68.     background: #79C5D2;
  69.     border-color: #000;
  70.   }
  71.  
  72.   .maintabbarbottom
  73.   {
  74.     border-color: #000;
  75.     background: #79C5D2;
  76.     box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.45);
  77.     z-index: 3;
  78.   }
  79.  
  80.   .tabbar a.button.notifying
  81.   {
  82.     background: #4C5A74;
  83.     border: 1px solid #000;
  84.     color: #FFF;
  85.     text-shadow: 0px -1px 0px #000;
  86.     z-index: 4;
  87.   }
  88.  
  89.   .tabbar a.button.notifying:hover
  90.   {
  91.     background: #5E7090;
  92.     border: 1px solid #000;
  93.     color: #FFF;
  94.     text-shadow: 0px -1px 0px #000;
  95.   }
  96.  
  97.   .tabbar a.button.subtle-notifying
  98.   {
  99.     color: #E35F40;
  100.     background: #F9F9F9;
  101.     border: 1px solid #000;
  102.     text-shadow: none;
  103.   }
  104.  
  105.   .tabbar a.button.subtle-notifying:hover
  106.   {
  107.     color: #E35F40;
  108.     background: #FFF;
  109.     border: 1px solid #000;
  110.     text-shadow: none;
  111.   }
  112.  
  113.   .tabbar a.button.cur, .tabbar a.button.cur:hover
  114.   {
  115.     border-color: #000;
  116.     background: transparent -moz-linear-gradient(center top , #9AE1EF, #79C5D2);
  117.     background: linear-gradient(to bottom,hsl(190, 73%, 77%),hsl(189, 50%, 65%));
  118.     color: #3D3C41;
  119.     text-shadow: 0px -1px 0px #89CFDC;
  120.     z-index: 3;
  121.   }
  122.  
  123.   .tabbar a.button
  124.   {
  125.     border-color: #000;
  126.     background: #F9F9F9;
  127.     color: #3D3C41;
  128.     text-shadow: none;
  129.   }
  130.  
  131.   .tabbar a.button:hover
  132.   {
  133.     border-color: #000;
  134.     background: #EEE;
  135.   }
  136.  
  137.   .tabbar li:last-child a.button
  138.   {
  139.     border-top-right-radius: 3px;
  140.   }
  141.  
  142.   .tabbar li:first-child a.button
  143.   {
  144.     border-top-left-radius: 3px;
  145.   }
  146.  
  147.   /* Header CSS ~end */
  148.  
  149.   /* Popup CSS */
  150.  
  151.   .ps-popup
  152.   {
  153.     border-color: #000;
  154.     background: #4E5259;
  155.     box-shadow: 1px 1px 0px rgba(255, 255, 255, 0.5) inset, -1px -1px 0px rgba(228, 228, 228, 0.5) inset, 2px 2px 3px rgba(0, 0, 0, 0.2);
  156.     color: #F2F2F2;
  157.     border-radius: 3px;
  158.   }
  159.  
  160.   .popupmenu button
  161.   {
  162.     width: 220px;
  163.     overflow-x: hidden;
  164.     color: #C4CCDF !important;
  165.     background: none !important;
  166.     border: none !important;
  167.     text-shadow: none !important;
  168.   }
  169.  
  170.   .popupmenu h3
  171.   {
  172.     color: #76C2CF;
  173.   }
  174.  
  175.   .popupmenu button.sel
  176.   {
  177.     border-color: #000;
  178.   }
  179.  
  180.   .popupmenu button:hover, .popupmenu button.sel:hover
  181.   {
  182.     border: 1px solid #000 !important;
  183.     background: rgba(0, 0, 0, 0.4) !important;
  184.   }
  185.  
  186.   .ps-popup hr
  187.   {
  188.     border: none;
  189.     border-bottom: 1px solid #F2F2F2;
  190.   }
  191.  
  192.   .ps-popup button
  193.   {
  194.     border: 1px solid #000;
  195.     background-color: #9AE1EF;
  196.     color: #3D3C41;
  197.     text-shadow: 0px -1px 0px #89CFDC;
  198.     border-radius: 3px;
  199.   }
  200.  
  201.   .ps-popup button:hover
  202.   {
  203.     border: 1px solid #000;
  204.     background-color: #79C5D2;
  205.     color: #3D3C41;
  206.   }
  207.  
  208.   .ps-popup a
  209.   {
  210.     color: #78C2CF;
  211.   }
  212.  
  213.   .ps-popup a.ilink
  214.   {
  215.     color: #C4CCDF;
  216.   }
  217.  
  218.   .ps-popup a.ilink:hover
  219.   {
  220.     color: #B2B9C9;
  221.   }
  222.  
  223.   .avatarlist button
  224.   {
  225.     border-color: #000;
  226.   }
  227.  
  228.   .avatarlist button:hover
  229.   {
  230.     border-color: #000;
  231.     background-color: rgba(0, 0, 0, 0.4);
  232.     box-shadow: none;
  233.   }
  234.  
  235.   .credits h2, .credits ul
  236.   {
  237.     color: #78C2CF;
  238.   }
  239.  
  240.   a.subtle, .credits ul li p
  241.   {
  242.     color: #C4CCDF;
  243.   }
  244.  
  245.   a.subtle:hover
  246.   {
  247.     color: #B1B8C9;
  248.   }
  249.  
  250.   .credits li small
  251.   {
  252.     color: #BBB;
  253.   }
  254.  
  255.   p[style="text-align:center;color:#555555"]
  256.   {
  257.     color: #BBB !important;
  258.   }
  259.  
  260.   .effect-volume em, .music-volume em
  261.   {
  262.     color: #BBB;
  263.   }
  264.  
  265.   p.or
  266.   {
  267.     color: #EEE;
  268.   }
  269.  
  270.   p.or::after, p.or::before
  271.   {
  272.     color: #999;
  273.   }
  274.  
  275.   /* Popup CSS ~end */
  276.  
  277.   .ps-overlay
  278.   {
  279.     background: rgba(0, 0, 0, 0.4);
  280.   }
  281.  
  282.   /*******************
  283.   * General CSS ~end *
  284.   *******************/
  285.  
  286.   /************
  287.   * Rooms CSS *
  288.   ************/
  289.  
  290.   .ps-room.ps-room-light.scrollable
  291.   {
  292.     background: rgba(0, 0, 0, 0.6) url("http://i.imgur.com/monrueM.png") right no-repeat;
  293.     color: #FFF;
  294.     text-shadow: 0px -1px 0px #000;
  295.   }
  296.  
  297.   .ps-room.ps-room-light.scrollable button
  298.   {
  299.     border: 1px solid #000;
  300.     background: transparent -moz-linear-gradient(center top , #9AE1EF, #79C5D2);
  301.     background: linear-gradient(to bottom,hsl(190, 73%, 77%),hsl(189, 50%, 65%));
  302.     color: #3D3C41;
  303.     text-shadow: 0px -1px 0px #89CFDC;
  304.     border-radius: 3px;
  305.     padding: 3px 5px;
  306.   }
  307.  
  308.   .teamlist .team
  309.   {
  310.     border: 1px solid #000;
  311.     background: transparent -moz-linear-gradient(center top , #9AE1EF, #79C5D2);
  312.     background: linear-gradient(to bottom,hsl(190, 73%, 77%),hsl(189, 50%, 65%));
  313.     color: #3D3C41;
  314.     text-shadow: none !important;
  315.     border-radius: 3px;
  316.   }
  317.  
  318.   .ps-room.ps-room-light.scrollable button:hover, .teamlist .team:hover
  319.   {
  320.     background: #79C5D2;
  321.     border-color: #000;
  322.   }
  323.  
  324.   .ps-room.ps-room-light.scrollable ul li button
  325.   {
  326.     margin-bottom: 2px;
  327.   }
  328.  
  329.   .roomlist a.ilink
  330.   {
  331.     border-color: #000;
  332.     background: #F9F9F9;
  333.     color: #3D3C41;
  334.     text-shadow: none;
  335.     box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5);
  336.     border-radius: 3px;
  337.   }
  338.  
  339.   .roomlist a.ilink small
  340.   {
  341.     color: #4C5A74;
  342.   }
  343.  
  344.   .roomlist a.ilink:hover
  345.   {
  346.     border-color: #000;
  347.     background: #EEE;
  348.     color: #3D3C41;
  349.     box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5);
  350.   }
  351.  
  352.   .roomlist h2
  353.   {
  354.     font-style: italic;
  355.     text-shadow: 0px -1px 0px #000;
  356.   }
  357.  
  358.   .chat-log-add
  359.   {
  360.     background: rgba(0, 0, 0, 0.6);
  361.     border-top: 1px solid #000;
  362.   }
  363.  
  364.   .chat-log-add .chatbox label
  365.   {
  366.     text-shadow: 1px 1px #000;
  367.   }
  368.  
  369.   .userlist
  370.   {
  371.     background: rgba(0, 0, 0, 0.6);
  372.     color: #FFF;
  373.     text-shadow: 1px 1px #000;
  374.     border-right: 1px solid #4E5259;
  375.   }
  376.  
  377.   .userlist li
  378.   {
  379.     border-bottom: 1px solid #000;
  380.     background: transparent;
  381.   }
  382.  
  383.   .userlist li button
  384.   {
  385.     background: rgba(0, 0, 0, 0.4);
  386.     text-shadow: 1px 1px #000;
  387.   }
  388.  
  389.   .userlist li em.group
  390.   {
  391.     color: #C4CCDF;
  392.   }
  393.  
  394.   .userlist li button:hover
  395.   {
  396.     background: rgba(0, 0, 0, 0.25);
  397.   }
  398.  
  399.   .chat-log
  400.   {
  401.     background: rgba(255, 255, 255, 0.6);
  402.   }
  403.  
  404.   .chat-log .utilichart
  405.   {
  406.     background: rgba(0, 0, 0, 0.8);
  407.     color: #FFF !important;
  408.     border-radius: 3px;
  409.   }
  410.  
  411.   .chat-log .chat small
  412.   {
  413.     color: #333;
  414.   }
  415.  
  416.   .broadcast-blue
  417.   {
  418.     text-align: center;
  419.     font-family: sans-serif;
  420.     padding: 4px;
  421.     margin: 5px;
  422.     background: #79C5D2;
  423.     border-style: solid;
  424.     border-width: 1px 3px 1px 3px;
  425.     border-color: #000;
  426.     color: #000;
  427.     text-shadow: 0px -1px 0px #89CFDC;
  428.     border-radius: 2px;
  429.   }
  430.  
  431.   .broadcast-blue a
  432.   {
  433.     color: #000;
  434.   }
  435.  
  436.   .broadcast-red
  437.   {
  438.     text-align: center;
  439.     font-family: sans-serif;
  440.     padding: 4px;
  441.     margin: 5px;
  442.     background: #D27A7A;
  443.     border-style: solid;
  444.     border-width: 1px 3px 1px 3px;
  445.     border-color: #000;
  446.     color: #000;
  447.     text-shadow: 0px -1px 0px #DC8989;
  448.     border-radius: 2px;
  449.   }
  450.  
  451.   .broadcast-red a
  452.   {
  453.     color: #000;
  454.   }
  455.  
  456.   .broadcast-green
  457.   {
  458.     text-align: center;
  459.     font-family: sans-serif;
  460.     padding: 4px;
  461.     margin: 5px;
  462.     background: #7DD27A;
  463.     border-style: solid;
  464.     border-width: 1px 3px 1px 3px;
  465.     border-color: #000;
  466.     color: #000;
  467.     text-shadow: 0px -1px 0px #8CDC89;
  468.     border-radius: 2px;
  469.   }
  470.  
  471.   .broadcast-green a
  472.   {
  473.     color: #000;
  474.   }
  475.  
  476.   .tournament-title
  477.   {
  478.     background: #4E5259;
  479.     color: #C4CCDF;
  480.     text-shadow: 0px -1px 0px #000;
  481.     border-color: #000;
  482.   }
  483.  
  484.   .tournament-status, .tournament-toggle
  485.   {
  486.     border-color: #000;
  487.     background: transparent -moz-linear-gradient(center top , #9AE1EF, #79C5D2);
  488.     background: linear-gradient(to bottom,hsl(190, 73%, 77%),hsl(189, 50%, 65%));
  489.     color: #3D3C41;
  490.     text-shadow: 0px -1px 0px #89CFDC;
  491.   }
  492.  
  493.   .tournament-status:hover, .tournament-toggle:hover
  494.   {
  495.     background: #79C5D2;
  496.     border-color: #000;
  497.   }
  498.  
  499.   .tournament-box
  500.   {
  501.     border-color: #000;
  502.     background: url("http://img10.deviantart.net/5013/i/2013/003/2/9/dark_snow_background_by_grim_s_morrison-d5qayzw.png");
  503.     background-size: cover;
  504.   }
  505.  
  506.   .ladder table, .ladder td, .ladder th
  507.   {
  508.     border-color: #000;
  509.   }
  510.  
  511.   .ladder th
  512.   {
  513.     border-color: #000;
  514.     background: transparent -moz-linear-gradient(center top , #9AE1EF, #79C5D2);
  515.     background: linear-gradient(to bottom,hsl(190, 73%, 77%),hsl(189, 50%, 65%));
  516.     color: #3D3C41;
  517.     text-shadow: 0px -1px 0px #89CFDC;
  518.   }
  519.  
  520.   .ladder td
  521.   {
  522.     background: rgba(0, 0, 0, 0.3);
  523.   }
  524.  
  525.   /*****************
  526.   * Rooms CSS ~end *
  527.   *****************/
  528.  
  529.   /**********************
  530.   * Mainmenuwrapper CSS *
  531.   **********************/
  532.  
  533.   .mainmenuwrapper
  534.   {
  535.     z-index: 2;
  536.   }
  537.  
  538.   .menugroup
  539.   {
  540.     background: rgba(0, 0, 0, 0.6);
  541.     border: 1px solid #000;
  542.   }
  543.  
  544.   .label
  545.   {
  546.     color: #FFF;
  547.     text-shadow: none;
  548.   }
  549.  
  550.   .mainmenu .menugroup:nth-child(1) .button, .mainmenu .menugroup:nth-child(2) p:nth-child(1) .button, .mainmenu .menugroup:nth-child(2) p:nth-child(2) .button, .mainmenu .menugroup:nth-child(2) p:nth-child(3) .button, .mainmenu .menugroup:nth-child(3) p:nth-child(1) .button, .mainmenu .menugroup:nth-child(3) p:nth-child(2) .button, .menugroup button
  551.   {
  552.     border: 1px solid #000;
  553.     background: transparent -moz-linear-gradient(center top , #9AE1EF, #79C5D2);
  554.     background: linear-gradient(to bottom,hsl(190, 73%, 77%),hsl(189, 50%, 65%));
  555.     color: #3D3C41;
  556.     text-shadow: 0px -1px 0px #89CFDC;
  557.     border-radius: 3px;
  558.   }
  559.  
  560.   .mainmenu .menugroup:nth-child(1) .button:hover, .mainmenu .menugroup:nth-child(2) p:nth-child(1) .button:hover, .mainmenu .menugroup:nth-child(2) p:nth-child(2) .button:hover, .mainmenu .menugroup:nth-child(2) p:nth-child(3) .button:hover, .mainmenu .menugroup:nth-child(3) p:nth-child(1) .button:hover, .mainmenu .menugroup:nth-child(3) p:nth-child(2) .button:hover, .menugroup button:hover
  561.   {
  562.     background: #79C5D2;
  563.     border-color: #000;
  564.   }
  565.  
  566.   .menugroup .button:focus
  567.   {
  568.     background: transparent -moz-linear-gradient(center top , #79C5D2, #9AE1EF);
  569.     background: linear-gradient(to bottom,hsl(189, 50%, 65%),hsl(190, 73%, 77%));
  570.     border-color: #000;
  571.   }
  572.  
  573.   .menugroup .button.disabled, .menugroup .button.disabled:hover, .menugroup .button.disabled:active
  574.   {
  575.     background: #79C5D2;
  576.     border-color: #000;
  577.     color: #3D3C41;
  578.   }
  579.  
  580.   .select
  581.   {
  582.     border-color: #000;
  583.     background: transparent -moz-linear-gradient(center top , #9AE1EF, #79C5D2);
  584.     background: linear-gradient(to bottom,hsl(190, 73%, 77%),hsl(189, 50%, 65%));
  585.     color: #3D3C41;
  586.     text-shadow: 0px -1px 0px #89CFDC;
  587.     box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2), 0px 1px 1px rgba(255, 255, 255, 0.8) inset;
  588.     border-radius: 3px;
  589.   }
  590.  
  591.   .select:hover
  592.   {
  593.     background: #79C5D2;
  594.     border-color: #000;
  595.   }
  596.  
  597.   .select:focus
  598.   {
  599.     background: transparent -moz-linear-gradient(center top , #79C5D2, #9AE1EF);
  600.     border-color: #000;
  601.   }
  602.  
  603.   .select::after
  604.   {
  605.     color: #3D3C41;
  606.   }
  607.  
  608.   .select:disabled, .select:disabled:hover
  609.   {
  610.     background: rgba(121, 197, 210, 0.7);
  611.     border-color: #000;
  612.     color: #3D3C41 !important;
  613.     text-shadow: none;
  614.   }
  615.  
  616.   .mainmenufooter a
  617.   {
  618.     color: #4C5A74;
  619.     text-shadow: none;
  620.   }
  621.  
  622.   .mainmenufooter a:hover
  623.   {
  624.     color: #2D3543;
  625.   }
  626.  
  627.   .mainmenufooter
  628.   {
  629.     color: #4C5A74;
  630.     text-shadow: none;
  631.     padding: 10px;
  632.     position: fixed;
  633.     bottom: 0px;
  634.     left: 0px;
  635.     border-color: #000;
  636.     border-style: solid;
  637.     border-width: 1px 1px 0px 0px;
  638.     background: rgba(255, 255, 255, 0.15);
  639.     border-top-right-radius: 5px;
  640.     box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.45);
  641.   }
  642.  
  643.   .pm-window.news-embed
  644.   {
  645.     opacity: 0.5;
  646.   }
  647.  
  648.   .pm-window.news-embed:hover
  649.   {
  650.     opacity: 1;
  651.   }
  652.  
  653.   .pm-window.news-embed h3
  654.   {
  655.     border-color: #000;
  656.     background: #79C5D2;
  657.     color: #3D3C41;
  658.     text-shadow: 0px -1px 0px #89CFDC;
  659.     border-top-left-radius: 3px;
  660.     border-top-right-radius: 3px;
  661.   }
  662.  
  663.   .pm-window.news-embed .pm-log
  664.   {
  665.     border-color: #000;
  666.     border-bottom: 1px solid #000;
  667.     border-bottom-left-radius: 3px;
  668.     border-bottom-right-radius: 3px;
  669.   }
  670.  
  671.   .pm-log a
  672.   {
  673.     color: #4C5A74;
  674.   }
  675.  
  676.   .pm-window.news-embed .closebutton
  677.   {
  678.     color: #3D3C41;
  679.   }
  680.  
  681.   .pm-window.news-embed .closebutton:hover
  682.   {
  683.     color: #BC5252;
  684.   }
  685.  
  686.   .pm-window h3.pm-notifying
  687.   {
  688.     background: #4C5A74;
  689.     border: 1px solid #000;
  690.     color: #FFF;
  691.     text-shadow: 0px -1px 0px #000;
  692.   }
  693.  
  694.   .pm-window h3.pm-notifying:hover
  695.   {
  696.     background: #5E7090;
  697.     border: 1px solid #000;
  698.     color: #FFF;
  699.     text-shadow: 0px -1px 0px #A23B68;
  700.   }
  701.  
  702.   .pm-window h3
  703.   {
  704.     background: transparent -moz-linear-gradient(center top , #9AE1EF, #79C5D2);
  705.     background: linear-gradient(to bottom,hsl(190, 73%, 77%),hsl(189, 50%, 65%));
  706.     border-color: #000;
  707.     color: #3D3C41;
  708.     text-shadow: none;
  709.     border-top-left-radius: 3px;
  710.     border-top-right-radius: 3px;
  711.   }
  712.  
  713.   .pm-window h3:hover, .pm-window.focused h3, .pm-window.focused h3:hover
  714.   {
  715.     background: #79C5D2;
  716.     border-color: #000;
  717.     color: #3D3C41;
  718.   }
  719.  
  720.   .pm-window h3 small
  721.   {
  722.     color: #555;
  723.   }
  724.  
  725.   .pm-window h3 .closebutton, .pm-window h3 .minimizebutton
  726.   {
  727.     color: #3D3C41;
  728.   }
  729.  
  730.   .pm-window h3 .closebutton:hover, .pm-window h3 .minimizebutton:hover
  731.   {
  732.     color: #4C5A74;
  733.   }
  734.  
  735.   .pm-log, .pm-window.focused .pm-log
  736.   {
  737.     border-color: #000;
  738.   }
  739.  
  740.   .pm-log .utilichart
  741.   {
  742.     background: rgba(0, 0, 0, 0.8);
  743.     color: #FFF !important;
  744.     border-radius: 3px;
  745.   }
  746.  
  747.   .challenge
  748.   {
  749.     background: rgba(0, 0, 0, 0.6);
  750.     border: 1px solid #000;
  751.     color: #C4CCDF;
  752.   }
  753.  
  754.   .challenge button
  755.   {
  756.     border: 1px solid #000;
  757.     background: transparent -moz-linear-gradient(center top , #9AE1EF, #79C5D2);
  758.     background: linear-gradient(to bottom,hsl(190, 73%, 77%),hsl(189, 50%, 65%));
  759.     color: #3D3C41;
  760.     text-shadow: 0px -1px 0px #89CFDC;
  761.     border-radius: 3px;
  762.     padding: 3px 5px;
  763.   }
  764.  
  765.   .challenge button:hover
  766.   {
  767.     background: #79C5D2;
  768.     border-color: #000;
  769.   }
  770.  
  771.   .pm-log-add, .pm-window.focused .pm-log-add
  772.   {
  773.     border-color: #000;
  774.   }
  775.  
  776.   .pm-window.focused .pm-log-add
  777.   {
  778.     background: #78C2CF;
  779.   }
  780.  
  781.   /***************************
  782.   * Mainmenuwrapper CSS ~end *
  783.   ***************************/
  784.  
  785.   /******************
  786.   * Teambuilder CSS *
  787.   ******************/
  788.  
  789.   .teamchartbox
  790.   {
  791.     border-top: 1px solid #000;
  792.     background: #4E5259;
  793.   }
  794.  
  795.   .setchart, .setchart-nickname
  796.   {
  797.     border: 1px solid #000;
  798.     background: transparent -moz-linear-gradient(center top , #9AE1EF, #79C5D2);
  799.     background: linear-gradient(to bottom,hsl(190, 73%, 77%),hsl(189, 50%, 65%));
  800.   }
  801.  
  802.   .setchart label, .setchart-nickname label
  803.   {
  804.     color: #3D3C41;
  805.     text-shadow: 0px -1px 0px #89CFDC;
  806.   }
  807.  
  808.   .setchart input, .setchart-nickname input, .statform input.inputform, .setdetails, .setstats
  809.   {
  810.     border: 1px solid #000;
  811.     background: #F9F9F9 !important;
  812.     box-shadow: none;
  813.   }
  814.  
  815.   .setchart input:hover, .setchart-nickname input:hover, .statform input.inputform:hover, .setdetails:hover, .setstats:hover
  816.   {
  817.     border: 1px solid #000;
  818.     background: #FFF !important;
  819.     box-shadow: none;
  820.   }
  821.  
  822.   .setchart input:focus, .setchart-nickname input:focus, .statform input.inputform:focus, .setdetails:focus, .setstats:focus
  823.   {
  824.     border-color: #78C2CF;
  825.     box-shadow: 0px 1px 2px #D2D2D2 inset, 0px 0px 5px #C4CCDF;
  826.   }
  827.  
  828.   .setdetails, .setstats
  829.   {
  830.     text-shadow: none !important;
  831.     padding: 0px !important;
  832.   }
  833.  
  834.   .setchart .setdetails label, .setchart .setstats label
  835.   {
  836.     text-shadow: none;
  837.   }
  838.  
  839.   .setmenu
  840.   {
  841.     top: 2px;
  842.   }
  843.  
  844.   .setmenu button
  845.   {
  846.     background: none !important;
  847.     border: none !important;
  848.     color: #FFF !important;
  849.     text-shadow: 0px 0px 1px #000 !important;
  850.     padding: 3px 6px !important;
  851.   }
  852.  
  853.   .setmenu button:hover
  854.   {
  855.     background: rgba(0, 0, 0, 0.4) !important;
  856.     border: 1px solid #000 !important;
  857.     color: #FFF !important;
  858.     text-shadow: 0px 0px 1px #000 !important;
  859.     padding: 2px 5px !important;
  860.   }
  861.  
  862.   .teambuilder-results h3, .teambuilder-results .utilichart h3
  863.   {
  864.     border: 1px solid #000;
  865.     background: transparent -moz-linear-gradient(center top , #9AE1EF, #79C5D2);
  866.     background: linear-gradient(to bottom,hsl(190, 73%, 77%),hsl(189, 50%, 65%));
  867.     color: #3D3C41;
  868.     text-shadow: 0px -1px 0px #89CFDC;
  869.   }
  870.  
  871.   .teambar button
  872.   {
  873.     padding: 0px !important;
  874.     border-radius: 0px !important;
  875.   }
  876.  
  877.   .teambar button:disabled, .teambar button:disabled:hover, .teambar button:disabled:active
  878.   {
  879.     background: #79C5D2 !important;
  880.     border: 1px solid #000;
  881.   }
  882.  
  883.   .teambuilder-results
  884.   {
  885.     background: transparent;
  886.   }
  887.  
  888.   .utilichart .movenamecol, .utilichart .pokemonnamecol, .utilichart .namecol
  889.   {
  890.     color: #FFF;
  891.   }
  892.  
  893.   .utilichart .numcol
  894.   {
  895.     color: #78C2CF !important;
  896.   }
  897.  
  898.   .teambuilder-results .firstresult a, .teambuilder-results .result a:hover
  899.   {
  900.     background: rgba(0, 0, 0, 0.4);
  901.     border: 1px solid #000;
  902.   }
  903.  
  904.   .utilichart b
  905.   {
  906.     color: #78C2CF;
  907.   }
  908.  
  909.   .utilichart .twoabilitycol, .utilichart .abilitycol, .utilichart .col
  910.   {
  911.     color: #DDD;
  912.     text-shadow: none;
  913.   }
  914.  
  915.   .utilichart .statcol em, .utilichart .bstcol em, .utilichart .labelcol em, .utilichart .widelabelcol em, .utilichart .pplabelcol em
  916.   {
  917.     color: #C4CCDF;
  918.     text-shadow: none;
  919.   }
  920.  
  921.   .utilichart .typecol img
  922.   {
  923.     opacity: 0.85;
  924.   }
  925.  
  926.   .teambuilder-clipboard-container
  927.   {
  928.     border-color: #7BBFD4;
  929.   }
  930.  
  931.   .teambuilder-clipboard-data, .teambuilder-clipboard-data:hover
  932.   {
  933.     border-color: #000;
  934.     background: transparent -moz-linear-gradient(center top , #9AE1EF, #79C5D2);
  935.     background: linear-gradient(to bottom,hsl(190, 73%, 77%),hsl(189, 50%, 65%));
  936.     color: #3D3C41;
  937.     text-shadow: 0px -1px 0px #89CFDC;
  938.     border-radius: 3px;
  939.   }
  940.  
  941.   .teambuilder-clipboard-data .section
  942.   {
  943.     border-right: 1px solid #000;
  944.   }
  945.  
  946.   .jslider .jslider-label
  947.   {
  948.     color: #FFF;
  949.     opacity: 0.75;
  950.   }
  951.  
  952.   .jslider .jslider-value
  953.   {
  954.     background: rgba(0, 0, 0, 0.4);
  955.     border: 1px solid #000;
  956.   }
  957.  
  958.   /***********************
  959.   * Teambuilder CSS ~end *
  960.   ***********************/
  961.  
  962.   /*************
  963.   * Battle CSS *
  964.   *************/
  965.  
  966.   .ps-room.ps-room-opaque
  967.   {
  968.     background: rgba(0, 0, 0, 0.5);
  969.     color: #F2F2F2;
  970.   }
  971.  
  972.   .battle-log
  973.   {
  974.     border-color: #000;
  975.     z-index: 4;
  976.   }
  977.  
  978.   .battle-log .utilichart
  979.   {
  980.     background: rgba(0, 0, 0, 0.8);
  981.     color: #FFF !important;
  982.     border-radius: 3px;
  983.   }
  984.  
  985.   .battle-log h2
  986.   {
  987.     border-color: #000;
  988.     background: transparent -moz-linear-gradient(center top , #9AE1EF, #79C5D2);
  989.     background: linear-gradient(to bottom,hsl(190, 73%, 77%),hsl(189, 50%, 65%));
  990.     color: #3D3C41;
  991.     text-shadow: 0px -1px 0px #89CFDC;
  992.   }
  993.  
  994.   .battle-log-add
  995.   {
  996.     border-color: #000;
  997.     background: transparent -moz-linear-gradient(center top , #9AE1EF, #79C5D2);
  998.     background: linear-gradient(to bottom,hsl(190, 73%, 77%),hsl(189, 50%, 65%));
  999.     color: #3D3C41;
  1000.     text-shadow: 0px -1px 0px #89CFDC;
  1001.     z-index: 4;
  1002.   }
  1003.  
  1004.   .battle
  1005.   {
  1006.     border-color: #000;
  1007.   }
  1008.  
  1009.   .battle-log .chat strong
  1010.   {
  1011.     color: #4C5A74;
  1012.   }
  1013.  
  1014.   em[style="color:#445566;display:block;"]
  1015.   {
  1016.     color: #4C5A74 !important;
  1017.   }
  1018.  
  1019.   .mfuhh .button:hover
  1020.   {
  1021.   }
  1022.  
  1023.   .battle-log .rated strong
  1024.   {
  1025.     background: #4C5A74;
  1026.   }
  1027.  
  1028.   .statbar .hpbar
  1029.   {
  1030.     background: none repeat scroll 0% 0% #000;
  1031.     border: 1px solid #000;
  1032.   }
  1033.  
  1034.   .statbar .hpbar .hptextborder
  1035.   {
  1036.     border-top: 1px solid #000;
  1037.     border-bottom: 1px solid #000;
  1038.   }
  1039.  
  1040.   .statbar .hpbar .hptext
  1041.   {
  1042.     background: #000;
  1043.   }
  1044.  
  1045.   .statbar .hpbar .prevhp
  1046.   {
  1047.     background: #000;
  1048.   }
  1049.  
  1050.   .statbar strong
  1051.   {
  1052.     display: block;
  1053.     text-align: center;
  1054.     color: #FFF;
  1055.     text-shadow: 1px 1px 0px #000, 1px -1px 0px #000, -1px 1px 0px #000, -1px -1px 0px #000;
  1056.   }
  1057.  
  1058.   .rightbar, .leftbar
  1059.   {
  1060.     border-color: #000;
  1061.     background: rgba(0, 0, 0, 0.4);
  1062.   }
  1063.  
  1064.   .trainer strong
  1065.   {
  1066.     color: #DDD;
  1067.   }
  1068.  
  1069.   .battle-controls .whatdo
  1070.   {
  1071.     color: #F2F2F2;
  1072.   }
  1073.  
  1074.   .battle-controls .whatdo small
  1075.   {
  1076.     border-color: #F2F2F2;
  1077.   }
  1078.  
  1079.   .moveselect button, .switchselect button
  1080.   {
  1081.     color: #FFF;
  1082.     text-shadow: 0px -1px 0px #000;
  1083.   }
  1084.  
  1085.   .moveselect button:hover, .switchselect button:hover
  1086.   {
  1087.     background: transparent;
  1088.     border: none;
  1089.   }
  1090.  
  1091.   /* Switchmenu CSS */
  1092.  
  1093.   .switchmenu
  1094.   {
  1095.     border-top: 3px solid #000;
  1096.   }
  1097.  
  1098.   .switchmenu button
  1099.   {
  1100.     box-shadow: none;
  1101.     border-color: #FFF;
  1102.     background: rgba(0, 0, 0, 0.7);
  1103.     color: #FFF;
  1104.     text-shadow: none;
  1105.     font-family: helvetica,arial,sans-serif;
  1106.     border-top-right-radius: 0px;
  1107.     border-top-left-radius: 0px;
  1108.     margin-top: 0px;
  1109.     border-top: none !important;
  1110.     padding: 3px 5px 5px 0px;
  1111.     height: 30px;
  1112.     transition: All 1.6116s ease;
  1113.     overflow-y: hidden;
  1114.     overflow-x: hidden;
  1115.   }
  1116.  
  1117.   .switchmenu button:hover
  1118.   {
  1119.     border-color: #FFF;
  1120.     background: rgba(0, 0, 0, 0.8);
  1121.     color: #FFF !important;
  1122.     height: 45px;
  1123.   }
  1124.  
  1125.   .switchmenu button:hover, .movemenu button:hover
  1126.   {
  1127.     color: #000;
  1128.   }
  1129.  
  1130.   .switchmenu button.disabled, .switchmenu button:disabled
  1131.   {
  1132.     border: 2px solid #EEE;
  1133.     color: #EEE;
  1134.     background: #111 !important;
  1135.     height: 30px;
  1136.   }
  1137.  
  1138.   /* Switchmenu CSS ~end */
  1139.  
  1140.   /* Movemenu CSS */
  1141.  
  1142.   .movemenu
  1143.   {
  1144.     border-top: 5px solid #000;
  1145.   }
  1146.  
  1147.   .movemenu button
  1148.   {
  1149.     border-top-right-radius: 0px;
  1150.     border-top-left-radius: 0px;
  1151.     margin-top: 0px;
  1152.     margin-bottom: 15px;
  1153.     transition: All 1.6116s ease;
  1154.     height: 24px;
  1155.     overflow-y: hidden;
  1156.     overflow-x: hidden;
  1157.     padding: 4px 4px 0px;
  1158.     border-top: none !important;
  1159.   }
  1160.  
  1161.   .movemenu button:hover
  1162.   {
  1163.     height: 40px;
  1164.     margin-bottom: -1px;
  1165.   }
  1166.  
  1167.   .movemenu button:disabled, .movemenu button:disabled:hover
  1168.   {
  1169.     border: 2px solid #EEE;
  1170.     color: #EEE;
  1171.     background: #111 !important;
  1172.     height: 24px;
  1173.   }
  1174.  
  1175.   .movemenu button.type-Electric
  1176.   {
  1177.     background: rgba(0, 0, 0, 0.7);
  1178.     border-color: #FFFB95;
  1179.     color: #FFFB95;
  1180.     text-shadow: 0px 0px 2px #000;
  1181.     box-shadow: 0px 0px 2px #000;
  1182.   }
  1183.  
  1184.   .movemenu button.type-Electric:hover
  1185.   {
  1186.     background: rgba(0, 0, 0, 0.8);
  1187.     border-color: #F9F348;
  1188.     color: #F9F348;
  1189.     text-shadow: 0px 0px 2px #000;
  1190.     box-shadow: 0px 0px 2px #000;
  1191.   }
  1192.  
  1193.   .movemenu button.type-Grass
  1194.   {
  1195.     background: rgba(0, 0, 0, 0.7);
  1196.     border-color: #91F29B;
  1197.     color: #91F29B;
  1198.     text-shadow: 0px 0px 2px #000;
  1199.     box-shadow: 0px 0px 2px #000;
  1200.   }
  1201.  
  1202.   .movemenu button.type-Grass:hover
  1203.   {
  1204.     background: rgba(0, 0, 0, 0.8);
  1205.     border-color: #55F365;
  1206.     color: #55F365;
  1207.     text-shadow: 0px 0px 2px #000;
  1208.     box-shadow: 0px 0px 2px #000;
  1209.   }
  1210.  
  1211.   .movemenu button.type-Dragon
  1212.   {
  1213.     background: rgba(0, 0, 0, 0.7);
  1214.     border-color: #A594D0;
  1215.     color: #A594D0;
  1216.     text-shadow: 0px 0px 2px #000;
  1217.     box-shadow: 0px 0px 2px #000;
  1218.   }
  1219.  
  1220.   .movemenu button.type-Dragon:hover
  1221.   {
  1222.     background: rgba(0, 0, 0, 0.8);
  1223.     border-color: #8E73CB;
  1224.     color: #8E73CB;
  1225.     text-shadow: 0px 0px 2px #000;
  1226.     box-shadow: 0px 0px 2px #000;
  1227.   }
  1228.  
  1229.   .movemenu button.type-Water
  1230.   {
  1231.     background: rgba(0, 0, 0, 0.7);
  1232.     border-color: #86CDD0;
  1233.     color: #86CDD0;
  1234.     text-shadow: 0px 0px 2px #000;
  1235.     box-shadow: 0px 0px 2px #000;
  1236.   }
  1237.  
  1238.   .movemenu button.type-Water:hover
  1239.   {
  1240.     background: rgba(0, 0, 0, 0.8);
  1241.     border-color: #4DCACE;
  1242.     color: #4DCACE;
  1243.     text-shadow: 0px 0px 2px #000;
  1244.     box-shadow: 0px 0px 2px #000;
  1245.   }
  1246.  
  1247.   .movemenu button.type-Normal
  1248.   {
  1249.     background: rgba(0, 0, 0, 0.7);
  1250.     border-color: #DBDBDB;
  1251.     color: #DBDBDB;
  1252.     text-shadow: 0px 0px 2px #000;
  1253.     box-shadow: 0px 0px 2px #000;
  1254.     border-top: none !important;
  1255.   }
  1256.  
  1257.   .movemenu button.type-Normal:hover
  1258.   {
  1259.     background: rgba(0, 0, 0, 0.8);
  1260.     border-color: #F5F5F5;
  1261.     color: #F5F5F5;
  1262.     text-shadow: 0px 0px 2px #000;
  1263.     box-shadow: 0px 0px 2px #000;
  1264.   }
  1265.  
  1266.   .movemenu button.type-Ghost
  1267.   {
  1268.     background: rgba(0, 0, 0, 0.7);
  1269.     border-color: #C0ABDF;
  1270.     color: #C0ABDF;
  1271.     text-shadow: 0px 0px 2px #000;
  1272.     box-shadow: 0px 0px 2px #000;
  1273.   }
  1274.  
  1275.   .movemenu button.type-Ghost:hover
  1276.   {
  1277.     background: rgba(0, 0, 0, 0.8);
  1278.     border-color: #AE8BE4;
  1279.     color: #AE8BE4;
  1280.     text-shadow: 0px 0px 2px #000;
  1281.     box-shadow: 0px 0px 2px #000;
  1282.   }
  1283.  
  1284.   .movemenu button.type-Steel
  1285.   {
  1286.     background: rgba(0, 0, 0, 0.7);
  1287.     border-color: #ACACAC;
  1288.     color: #ACACAC;
  1289.     text-shadow: 0px 0px 2px #000;
  1290.     box-shadow: 0px 0px 2px #000;
  1291.   }
  1292.  
  1293.   .movemenu button.type-Steel:hover
  1294.   {
  1295.     background: rgba(0, 0, 0, 0.8);
  1296.     border-color: #7A7A7A;
  1297.     color: #7A7A7A;
  1298.     text-shadow: 0px 0px 2px #000;
  1299.     box-shadow: 0px 0px 2px #000;
  1300.   }
  1301.  
  1302.   .movemenu button.type-Fairy
  1303.   {
  1304.     background: rgba(0, 0, 0, 0.7);
  1305.     border-color: #FCB3F0;
  1306.     color: #FCB3F0;
  1307.     text-shadow: 0px 0px 2px #000;
  1308.     box-shadow: 0px 0px 2px #000;
  1309.   }
  1310.  
  1311.   .movemenu button.type-Fairy:hover
  1312.   {
  1313.     background: rgba(0, 0, 0, 0.8);
  1314.     border-color: #FA7FE6;
  1315.     color: #FA7FE6;
  1316.     text-shadow: 0px 0px 2px #000;
  1317.     box-shadow: 0px 0px 2px #000;
  1318.   }
  1319.  
  1320.   .movemenu button.type-Dark
  1321.   {
  1322.     background: rgba(0, 0, 0, 0.7);
  1323.     border-color: #626262;
  1324.     color: #626262;
  1325.     text-shadow: 0px 0px 2px #000;
  1326.     box-shadow: 0px 0px 2px #000;
  1327.   }
  1328.  
  1329.   .movemenu button.type-Dark:hover
  1330.   {
  1331.     background: rgba(0, 0, 0, 0.8);
  1332.     border-color: #393939;
  1333.     color: #393939;
  1334.     text-shadow: 0px 0px 2px #000;
  1335.     box-shadow: 0px 0px 2px #000;
  1336.   }
  1337.  
  1338.   .movemenu button.type-Fire
  1339.   {
  1340.     background: rgba(0, 0, 0, 0.7);
  1341.     border-color: #FFD089;
  1342.     color: #FFD089;
  1343.     text-shadow: 0px 0px 2px #000;
  1344.     box-shadow: 0px 0px 2px #000;
  1345.   }
  1346.  
  1347.   .movemenu button.type-Fire:hover
  1348.   {
  1349.     background: rgba(0, 0, 0, 0.8);
  1350.     border-color: #FFBC55;
  1351.     color: #FFBC55;
  1352.     text-shadow: 0px 0px 2px #000;
  1353.     box-shadow: 0px 0px 2px #000;
  1354.   }
  1355.  
  1356.   .movemenu button.type-Fighting
  1357.   {
  1358.     background: rgba(0, 0, 0, 0.7);
  1359.     border-color: #DFA39F;
  1360.     color: #DFA39F;
  1361.     text-shadow: 0px 0px 2px #000;
  1362.     box-shadow: 0px 0px 2px #000;
  1363.   }
  1364.  
  1365.   .movemenu button.type-Fighting:hover
  1366.   {
  1367.     background: rgba(0, 0, 0, 0.8);
  1368.     border-color: #DA7B74;
  1369.     color: #DA7B74;
  1370.     text-shadow: 0px 0px 2px #000;
  1371.     box-shadow: 0px 0px 2px #000;
  1372.   }
  1373.  
  1374.   .movemenu button.type-Poison
  1375.   {
  1376.     background: rgba(0, 0, 0, 0.7);
  1377.     border-color: #DCB4DC;
  1378.     color: #DCB4DC;
  1379.     text-shadow: 0px 0px 2px #000;
  1380.     box-shadow: 0px 0px 2px #000;
  1381.   }
  1382.  
  1383.   .movemenu button.type-Poison:hover
  1384.   {
  1385.     background: rgba(0, 0, 0, 0.8);
  1386.     border-color: #D085D0;
  1387.     color: #D085D0;
  1388.     text-shadow: 0px 0px 2px #000;
  1389.     box-shadow: 0px 0px 2px #000;
  1390.   }
  1391.  
  1392.   .movemenu button.type-Rock
  1393.   {
  1394.     background: rgba(0, 0, 0, 0.7);
  1395.     border-color: #DBCC90;
  1396.     color: #DBCC90;
  1397.     text-shadow: 0px 0px 2px #000;
  1398.     box-shadow: 0px 0px 2px #000;
  1399.   }
  1400.  
  1401.   .movemenu button.type-Rock:hover
  1402.   {
  1403.     background: rgba(0, 0, 0, 0.8);
  1404.     border-color: #C4B475;
  1405.     color: #C4B475;
  1406.     text-shadow: 0px 0px 2px #000;
  1407.     box-shadow: 0px 0px 2px #000;
  1408.   }
  1409.  
  1410.   .movemenu button.type-Ground
  1411.   {
  1412.     background: rgba(0, 0, 0, 0.7);
  1413.     border-color: #DED2B0;
  1414.     color: #DED2B0;
  1415.     text-shadow: 0px 0px 2px #000;
  1416.     box-shadow: 0px 0px 2px #000;
  1417.   }
  1418.  
  1419.   .movemenu button.type-Ground:hover
  1420.   {
  1421.     background: rgba(0, 0, 0, 0.8);
  1422.     border-color: #E5CE8E;
  1423.     color: #E5CE8E;
  1424.     text-shadow: 0px 0px 2px #000;
  1425.     box-shadow: 0px 0px 2px #000;
  1426.   }
  1427.  
  1428.   .movemenu button.type-Ice
  1429.   {
  1430.     background: rgba(0, 0, 0, 0.7);
  1431.     border-color: #A7E8E8;
  1432.     color: #A7E8E8;
  1433.     text-shadow: 0px 0px 2px #000;
  1434.     box-shadow: 0px 0px 2px #000;
  1435.   }
  1436.  
  1437.   .movemenu button.type-Ice:hover
  1438.   {
  1439.     background: rgba(0, 0, 0, 0.8);
  1440.     border-color: #79CDCD;
  1441.     color: #79CDCD;
  1442.     text-shadow: 0px 0px 2px #000;
  1443.     box-shadow: 0px 0px 2px #000;
  1444.   }
  1445.  
  1446.   .movemenu button.type-Flying
  1447.   {
  1448.     background: rgba(0, 0, 0, 0.7);
  1449.     border-color: #BFB5DF;
  1450.     color: #BFB5DF;
  1451.     text-shadow: 0px 0px 2px #000;
  1452.     box-shadow: 0px 0px 2px #000;
  1453.   }
  1454.  
  1455.   .movemenu button.type-Flying:hover
  1456.   {
  1457.     background: rgba(0, 0, 0, 0.8);
  1458.     border-color: #A597D5;
  1459.     color: #A597D5;
  1460.     text-shadow: 0px 0px 2px #000;
  1461.     box-shadow: 0px 0px 2px #000;
  1462.   }
  1463.  
  1464.   .movemenu button.type-Psychic
  1465.   {
  1466.     background: rgba(0, 0, 0, 0.7);
  1467.     border-color: #E9B8C7;
  1468.     color: #E9B8C7;
  1469.     text-shadow: 0px 0px 2px #000;
  1470.     box-shadow: 0px 0px 2px #000;
  1471.   }
  1472.  
  1473.   .movemenu button.type-Psychic:hover
  1474.   {
  1475.     background: rgba(0, 0, 0, 0.8);
  1476.     border-color: #E595AD;
  1477.     color: #E595AD;
  1478.     text-shadow: 0px 0px 2px #000;
  1479.     box-shadow: 0px 0px 2px #000;
  1480.   }
  1481.  
  1482.   .movemenu button.type-Bug
  1483.   {
  1484.     background: rgba(0, 0, 0, 0.7);
  1485.     border-color: #E0E6A8;
  1486.     color: #E0E6A8;
  1487.     text-shadow: 0px 0px 2px #000;
  1488.     box-shadow: 0px 0px 2px #000;
  1489.   }
  1490.  
  1491.   .movemenu button.type-Bug:hover
  1492.   {
  1493.     background: rgba(0, 0, 0, 0.8);
  1494.     border-color: #B9C16B;
  1495.     color: #B9C16B;
  1496.     text-shadow: 0px 0px 2px #000;
  1497.     box-shadow: 0px 0px 2px #000;
  1498.   }
  1499.  
  1500.   .movemenu button.type-Bug small
  1501.   {
  1502.     color: #E0E6A8;
  1503.   }
  1504.  
  1505.   .movemenu button.type-Psychic small
  1506.   {
  1507.     color: #E9B8C7;
  1508.   }
  1509.  
  1510.   .movemenu button.type-Flying small
  1511.   {
  1512.     color: #BFB5DF;
  1513.   }
  1514.  
  1515.   .movemenu button.type-Ice small
  1516.   {
  1517.     color: #A7E8E8;
  1518.   }
  1519.  
  1520.   .movemenu button.type-Ground small
  1521.   {
  1522.     color: #DED2B0;
  1523.   }
  1524.  
  1525.   .movemenu button.type-Rock small
  1526.   {
  1527.     color: #DBCC90;
  1528.   }
  1529.  
  1530.   .movemenu button.type-Poison small
  1531.   {
  1532.     color: #DCB4DC;
  1533.   }
  1534.  
  1535.   .movemenu button.type-Fighting small
  1536.   {
  1537.     color: #DFA39F;
  1538.   }
  1539.  
  1540.   .movemenu button.type-Fire small
  1541.   {
  1542.     color: #FFD089;
  1543.   }
  1544.  
  1545.   .movemenu button.type-Dark small
  1546.   {
  1547.     color: #413E41;
  1548.   }
  1549.  
  1550.   .movemenu button.type-Fairy small
  1551.   {
  1552.     color: #FCB3F0;
  1553.   }
  1554.  
  1555.   .movemenu button.type-Steel small
  1556.   {
  1557.     color: #ACACAC;
  1558.   }
  1559.  
  1560.   .movemenu button.type-Ghost small
  1561.   {
  1562.     color: #C0ABDF;
  1563.   }
  1564.  
  1565.   .movemenu button.type-Grass small
  1566.   {
  1567.     color: #91F29B;
  1568.   }
  1569.  
  1570.   .movemenu button.type-Normal small
  1571.   {
  1572.     color: #DBDBDB;
  1573.   }
  1574.  
  1575.   .movemenu button.type-Electric small
  1576.   {
  1577.     color: #FFFB95;
  1578.   }
  1579.  
  1580.   .movemenu button.type-Water small
  1581.   {
  1582.     color: #86CDD0;
  1583.   }
  1584.  
  1585.   .movemenu button.type-Dragon small
  1586.   {
  1587.     color: #A594D0;
  1588.   }
  1589.  
  1590.   .movemenu button:disabled
  1591.   {
  1592.     background: #201E1E;
  1593.     border-color: #171616;
  1594.     color: #DDD;
  1595.     text-shadow: 0px 0px 2px #000;
  1596.     box-shadow: 0px 0px 2px #000;
  1597.   }
  1598.  
  1599.   /* Movemenu button ~end */
  1600.  
  1601.   /* Tooltipwrapper */
  1602.  
  1603.   #tooltipwrapper
  1604.   {
  1605.     position: absolute;
  1606.     top: 400px;
  1607.     left: 100px;
  1608.     text-align: left;
  1609.     color: #8ECAFA;
  1610.     text-shadow: 1px 1px #000 !important;
  1611.   }
  1612.  
  1613.   #tooltipwrapper .tooltip
  1614.   {
  1615.     position: absolute;
  1616.     bottom: 0;
  1617.     left: 0;
  1618.     width: 300px;
  1619.     border: 1px solid #000;
  1620.     background: rgba(0, 0, 0, 0.9);
  1621.     border-radius: 3px;
  1622.   }
  1623.  
  1624.   #tooltipwrapper .tooltip h2
  1625.   {
  1626.     padding: 2px 4px;
  1627.     margin: 0;
  1628.     border-bottom: 1px solid #000;
  1629.     font-size: 10pt;
  1630.   }
  1631.  
  1632.   #tooltipwrapper .tooltip h2 small
  1633.   {
  1634.     font-weight: normal;
  1635.   }
  1636.  
  1637.   #tooltipwrapper .tooltip p
  1638.   {
  1639.     padding: 2px 4px;
  1640.     margin: 0;
  1641.     font-size: 8pt;
  1642.   }
  1643.  
  1644.   #tooltipwrapper .tooltip p.section
  1645.   {
  1646.     border-top: 1px solid #000000;
  1647.   }
  1648.  
  1649.   /* Tooltipwrapper ~end */
  1650.  
  1651.   .ps-room .battle-controls
  1652.   {
  1653.     background: transparent !important;
  1654.   }
  1655.  
  1656.   /******************
  1657.   * Battle CSS ~end *
  1658.   ******************/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement