Advertisement
Guest User

Untitled

a guest
Mar 2nd, 2015
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. .home2 {
  2. background-image:url(img/001.jpg);
  3. background-repeat: no-repeat;
  4. background-position: center center fixed;
  5. -webkit-background-size: cover;
  6. -moz-background-size: cover;
  7. -o-background-size: cover;
  8. background-size: cover;
  9. min-height:200px;
  10. max-width:1200px;
  11. overflow:none;
  12. }
  13. body {
  14. background-image:url(img/curtains.png);
  15. background-size:cover;
  16. background-repeat:no-repeat;
  17. background-position:top center;
  18. width:100%;
  19. height:100%;
  20. margin:0;
  21. padding:0;
  22. position:relative;
  23. z-index:-1;
  24. padding-top:30px;
  25. }
  26.  
  27. figure#wheel-wrap {
  28. position:relative;
  29. margin:0 auto;
  30. top:50%;
  31. width: 100%;
  32. height: auto;
  33. overflow: hidden;
  34. }
  35.  
  36. #wheel {
  37. width: 50%;
  38. height:auto;
  39. position:relative;
  40. overflow:hidden;
  41. float:left;
  42. }
  43.  
  44. #wheel img{
  45. left: 0px;
  46. width: 100%;
  47. height:auto;
  48. position:relative;
  49. }
  50.  
  51. #leftarrow {
  52. position: relative;
  53. width: 25%;
  54. height: auto;
  55. overflow: hidden;
  56. float:left;
  57. }
  58. #leftarrow img{
  59. width:100%;
  60. }
  61. #leftarrow:hover{
  62. cursor: pointer;
  63. }
  64.  
  65. #rightarrow {
  66. position: relative;
  67. float:left;
  68. width: 25%;
  69. height: auto;
  70. overflow: hidden;
  71. }
  72. #rightarrow img{
  73. width:100%;
  74. }
  75. #rightarrow:hover{
  76. cursor: pointer;
  77. }
  78.  
  79. <div class="container">
  80. <div class="row">
  81. <div class="col-lg-12 col-sm-12">
  82. <div class="home2" style="min-height:500px;">
  83.  
  84. <figure id="wheel-wrap">
  85. <div id="leftarrow">
  86. <img src="http://www.bluetabby.net/rr/img/leftarw.png" width="100%">
  87. </div>
  88. <div id="wheel">
  89. <img id="wheel2" src="http://www.bluetabby.net/rr/img/pie.png" usemap="#Pie" />
  90. </div>
  91. <img class="marker" src="http://bluetabby.com/rr/img/marker.png" />
  92. <div id="rightarrow">
  93. <img src="http://www.bluetabby.net/rr/img/rtarw.png" width="100%"></div>
  94. </figure>
  95.  
  96. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement