Advertisement
Guest User

Forums.Aeriagames style fix v1.1

a guest
Feb 28th, 2012
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*CHROME VERSION*/
  2.  
  3. /*First Section: Applies to URLs starting with "http://www.aeriagames.com/forums/" */
  4.  
  5. body {
  6. background: -webkit-gradient(linear, left top, left bottom, from(#a7a7a7), to(#575757));
  7. background: -webkit-linear-gradient(top, #a7a7a7, #575757);
  8. background: -moz-linear-gradient(top, #a7a7a7, #575757);
  9. background: -ms-linear-gradient(top, #a7a7a7, #575757);
  10. background: -o-linear-gradient(top, #a7a7a7, #575757);
  11. background-color:#a7a7a7;
  12.   background-image: url(http://nerfjax.com/kuenaimaku/images/blog/cubes.png), -webkit-gradient(linear, left top, left bottom, from(#f496ff), to(#C3A8FF)); /* Saf4+, Chrome */
  13.   background-image: url(http://nerfjax.com/kuenaimaku/images/blog/cubes.png), -webkit-linear-gradient(top, #c3c3c3, #333333); /* Chrome 10+, Saf5.1+ */
  14. }
  15.  
  16. #generalAnnouncements {
  17. background-color: RGBA(0,0,0,0);
  18. }
  19.  
  20. div#auxCol {
  21. position: relative;
  22. top:-205px;
  23. }
  24.  
  25. a{
  26. color:
  27. text-shadow: rgba(255,255,255,.4) 1px 2px 3px;
  28. }
  29.  
  30. /*Second Section: Applies to URLs starting with "http://shout.aeriagames.com/forums/" */
  31.  
  32. #theBody{
  33. overflow:hidden;
  34. }
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46. /*FIREFOX VERSION*/
  47.  
  48. @-moz-document url-prefix("http://www.aeriagames.com/forums/") {
  49. body {
  50. background: -webkit-gradient(linear, left top, left bottom, from(#a7a7a7), to(#575757));
  51. background: -webkit-linear-gradient(top, #a7a7a7, #575757);
  52. background: -moz-linear-gradient(top, #a7a7a7, #575757);
  53. background: -ms-linear-gradient(top, #a7a7a7, #575757);
  54. background: -o-linear-gradient(top, #a7a7a7, #575757);
  55. background-color:#a7a7a7;
  56. }
  57.  
  58. #generalAnnouncements {
  59. background-color: RGBA(0,0,0,0);
  60. }
  61.  
  62. div#auxCol {
  63. position: relative;
  64. top:-205px;
  65. }
  66.  
  67. a{
  68. color:
  69. text-shadow: rgba(255,255,255,.4) 1px 2px 3px;
  70. }
  71. }
  72.  
  73. @-moz-document url-prefix("http://shout.aeriagames.com/forums/") {
  74. #theBody{
  75. overflow:hidden;
  76. }
  77. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement