Advertisement
Guest User

Untitled

a guest
Nov 15th, 2013
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. body {
  2. margin: 0px;
  3. background: url("../images/background.png") #555555 fixed;
  4. font: 16px arial;
  5. color: white;
  6. }
  7.  
  8. a {
  9. color: white;
  10. text-decoration: none;
  11. }
  12.  
  13. img {
  14. border: 0px;
  15. }
  16.  
  17. #game {
  18. padding: 0px;
  19. height: 13px;
  20. background: rgba(0, 0, 0, .15);
  21. overflow: hidden;
  22. transition: .75s;
  23. -webkit-transition: .75s;
  24. -o-transition: .75s;
  25. }
  26.  
  27. #genres {
  28. position: relative;
  29. left: 50%;
  30. margin: 0px 0px 0px -390px;
  31. padding: 10px 0px 0px 0px;
  32. width: 780px;
  33. height: 28px;
  34. background: rgba(0, 0, 0, .1);
  35. text-align: center;
  36. word-spacing: 25px;
  37. }
  38.  
  39. #games {
  40. position: relative;
  41. left: 50%;
  42. margin: 0px 0px 0px -390px;
  43. padding: 5px;
  44. width: 770px;
  45. height: 440px;
  46. background: rgba(0, 0, 0, .15);
  47. overflow: hidden;
  48. }
  49.  
  50. div.icon {
  51. float: left;
  52. margin: 5px;
  53. width: 100px;
  54. height: 100px;
  55. }
  56.  
  57. div.icon img {
  58. border-radius: 5px;
  59. -webkit-border-radius: 5px;
  60. }
  61.  
  62. div.icon div.genre {
  63. position: relative;
  64. bottom: 35px;
  65. padding: 2px 0px 0px 0px;
  66. height: 20px;
  67. background: rgba(0, 0, 0, .5);
  68. text-align: center;
  69. opacity: 0;
  70. transition: .5s;
  71. -webkit-transition: .5s;
  72. -o-transition: .5s;
  73. }
  74.  
  75. div.icon:hover div.genre {
  76. opacity: 1;
  77. }
  78.  
  79. #pages {
  80. position: relative;
  81. left: 50%;
  82. margin: 0px 0px 0px -390px;
  83. padding: 10px 0px 0px 0px;
  84. width: 780px;
  85. height: 28px;
  86. background: rgba(0, 0, 0, .1);
  87. text-align: center;
  88. word-spacing: 10px;
  89. }
  90.  
  91. #footer {
  92. position: relative;
  93. left: 50%;
  94. margin: 0px 0px 0px -390px;
  95. width: 780px;
  96. height: 13px;
  97. background: rgba(0, 0, 0, .15);
  98. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement