Advertisement
maxthelinkfan

Untitled

Mar 2nd, 2013
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. body
  2. {
  3. background: url('http://assets.jaycraft.co/buycraft/regular/stonebrick.jpg');
  4. background-size: 128px 128px;
  5. }
  6.  
  7. .box
  8. {
  9. background: url('http://assets.jaycraft.co/buycraft/regular/bg.png');
  10. border: 1px solid #000000;
  11. -webkit-border-radius: 5px;
  12. -moz-border-radius: 5px;
  13. border-radius: 5px;
  14. }
  15.  
  16. .box-container .header {
  17. background-image:url('http://assets.jaycraft.co/buycraft/regular/header.png');
  18. color: white;
  19. border: none;
  20. background-color: transparent;
  21. border-top-left-radius:0px;
  22. border-top-right-radius:0px;
  23. -webkit-border-radius-topright:0px;
  24. -webkit-border-radius-topleft:0px;
  25. -moz-border-radius-topright:0px;
  26. -moz-border-radius-topleft:0px;
  27. height: 20px;
  28. padding-top: 20px;
  29. font-family: Arial;
  30. text-shadow:0px 2px #282828;
  31. }
  32.  
  33. .header .logo
  34. {
  35. background: url('http://i.imgur.com/GYaUehS.png');
  36. background-size: 248px 80px;
  37. background-repeat: no-repeat;
  38. float:left;
  39. position:relative;
  40. }
  41.  
  42. .header .logo span
  43. {
  44. opacity: 0;
  45. font-color: 000000;
  46. font-size: 0;
  47. }
  48.  
  49. em
  50. {
  51. color:red;
  52. font-weight:bold;
  53. font-style:normal;
  54. }
  55.  
  56. /*Spinny Heads*/
  57. .image {
  58. display: block;
  59. text-decoration: none;
  60. -webkit-transition: .5s all ease-in-out;
  61. -moz-transition: .5s all ease-in-out;
  62. -o-transition: .5s all ease-in-out;
  63. transition: .5s all ease-in-out;
  64. }
  65. .image:hover {
  66. -webkit-transform: rotate(720deg) scale(2);
  67. -moz-transform: rotate(720deg) scale(2);
  68. -o-transform: rotate(720deg) scale(2);
  69. transform: rotate(720deg) scale(2);
  70. box-shadow: 2px 2px 5px black;
  71. -webkit-box-shadow: 2px 2px 5px black;
  72. -moz-box-shadow: 0px 0px 20px #663300;
  73. -webkit-box-shadow: 0px 0px 20px #663300;
  74. box-shadow: 0px 0px 20px #663300;
  75. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement