Advertisement
thisisnotras

newchar?

Nov 8th, 2014
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. <style>
  2. .pfor {display: none;}
  3. #profile {background-color: transparent; border: 0px;}
  4.  
  5. body {background: white;}
  6.  
  7. a {text-decoration: none;}
  8.  
  9. #whole {position: fixed;
  10. top: 0px;
  11. left: 0px;
  12. right: 0px;
  13. bottom: 0px;}
  14.  
  15. #test {position: absolute;
  16. height: 400px;
  17. width: 600px;
  18. border: 1px solid black;
  19. top: 100px;
  20. left: 100px;
  21. overflow: hidden;
  22. }
  23.  
  24. #test2 {position: absolute;
  25. top: 0px;
  26. bottom: 0px;
  27. left: 0px;
  28. width: 200px;
  29. border-right: 0px solid black;
  30. background-image:
  31. url(http://i60.tinypic.com/2iqjyhs.jpg);
  32. background-size: auto 100%;
  33. background-repeat: no-repeat;
  34. background-position: center;
  35. overflow: hidden;
  36. border-right: 1px solid black;}
  37.  
  38. #test3 {position: absolute;
  39. top: 0px;
  40. bottom: 0px;
  41. left: 0px;
  42. width: 200px;
  43. background: gray;
  44. z-index: 1;
  45. opacity: 0;
  46. -webkit-transition: all 1s;
  47. transition: all 1s;
  48. overflow: hidden;
  49. }
  50.  
  51. #test3:hover {
  52. opacity: 1;}
  53.  
  54. #test3a {
  55. position: absolute;
  56. height: 30px;
  57. width: 120px;
  58. top: 50px;
  59. left: 40px;
  60. background: black;
  61. color: white;
  62. text-align: center;
  63. box-sizing: border-box;
  64. padding-top: 7px;
  65. overflow: hidden;
  66. }
  67.  
  68. #test3a.b{top: 175px !important;}
  69.  
  70. #test3a.c{top:300px !important}
  71.  
  72. #contentholder {position: absolute;
  73. top: 0px;
  74. right: 0px;
  75. bottom: 0px;
  76. left: 200px;
  77. border: 0px solid red;
  78. overflow: hidden;
  79. }
  80.  
  81. #contentbox {
  82. height: 400px;
  83. width: 400px;
  84. border: 0px solid green;
  85. overflow: auto;}
  86.  
  87.  
  88. </style>
  89.  
  90. <div id="whole">
  91.  
  92. <div id="test">
  93. <div id="test2">
  94. </div>
  95.  
  96. <div id="test3">
  97. <a href=#sectionone><div id="test3a">
  98. link one
  99. </div></a>
  100.  
  101. <a href=#sectiontwo><div id="test3a" class="b">
  102. link two
  103. </div></a>
  104.  
  105. <a href=#sectionthree><div id="test3a" class="c">
  106. link three
  107. </div></a>
  108.  
  109. </div>
  110.  
  111. <div id="contentholder">
  112.  
  113. <a name="sectionone"></a>
  114. <div id="contentbox">
  115. Wee.
  116. </div>
  117.  
  118. <a name="sectiontwo"></a>
  119. <div id="contentbox">
  120. Wee-er.
  121. </div>
  122.  
  123.  
  124. <a name="sectionthree"></a>
  125. <div id="contentbox">
  126. Wee-est.
  127. </div>
  128.  
  129.  
  130.  
  131. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement