Advertisement
thisisnotras

Vier revision

Aug 22nd, 2015
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.51 KB | None | 0 0
  1. <style>
  2.  
  3. .pfor {display: none;}
  4. #profile {background: transparent; border: 0;}
  5.  
  6. body{ background: #313447;
  7. }
  8.  
  9. ::-webkit-scrollbar
  10. {
  11. width: 4px;
  12. background-color: gray;
  13. }
  14.  
  15. ::-webkit-scrollbar-thumb
  16. {
  17. border-radius: 10px;
  18. -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  19. background-color: #313447 ;
  20. }
  21.  
  22.  
  23.  
  24. @font-face{
  25. font-family: 'headerfont';
  26. src: url(https://dl.dropboxusercontent.com/u/4556289/Crazy%2BThoughts.ttf);
  27. }
  28.  
  29. @font-face{
  30. font-family: 'bodyfont';
  31. src:url(https://dl.dropboxusercontent.com/u/4556289/yataghan.ttf);
  32. }
  33.  
  34. #container {
  35. position: absolute;
  36. left: 0px;
  37. right: 0px;
  38. top: 0px;
  39. bottom: 0px;
  40. margin: auto;
  41. height: 500px;
  42. width: 602px;
  43. border: 0px solid black;
  44. box-sizing: border-box;
  45. }
  46.  
  47. #centerbox {
  48. top: 0px;
  49. border: 1px solid black;
  50. border-top: 5px solid black;
  51. border-bottom: 5px solid black;
  52. position: absolute;
  53. z-index: 1;
  54. left: 200px;
  55. height: 100%;
  56. width: 198px;
  57. background-image: url(http://i60.tinypic.com/i5dkrn.jpg);
  58. background-repeat: no-repeat;
  59. background-size: auto 100%;
  60. background-position: center;
  61. border-radius: 20px 20px 20px 20px;
  62. }
  63.  
  64. #rightbox {
  65. border: 1px solid black;
  66. position: absolute;
  67. left: 375px;
  68. height: 495px;
  69. width: 198px;
  70. border-radius: 0px 180px 80px 0px;
  71. border-bottom: 9px solid black;
  72. border-top: 6px solid black;
  73. overflow: hidden;
  74. background: #BBBBC4;
  75. }
  76.  
  77. #leftbox {
  78. border: 1px solid black;
  79. position: absolute;
  80. left: 30px;
  81. height: 495px;
  82. width: 198px;
  83. border-radius: 180px 0px 0px 80px;
  84. border-bottom: 9px solid black;
  85. border-top: 6px solid black;
  86. overflow: hidden;
  87. background: #BBBBC4;
  88. }
  89.  
  90. #selectionone {
  91. position: absolute;
  92. left: 190px;
  93. width: 20px;
  94. top: 3px;
  95. height: 100%;
  96. border: 0px solid black;
  97. box-sizing: border-box;
  98. padding-top: 80px;
  99. z-index: 2;
  100. background: black;
  101. }
  102.  
  103. #selectiontwo {
  104. position: absolute;
  105. left: 390px;
  106. width: 20px;
  107. top: 3px;
  108. height: 100%;
  109. border: 0px solid black;
  110. box-sizing: border-box;
  111. padding-top: 80px;
  112. z-index: 2;
  113. background: black;
  114. }
  115.  
  116. a.lynk {
  117. margin-bottom: 60px;
  118. margin-left: 2.5px;
  119. float: left;
  120. height: 70px;
  121. width: 15px;
  122. border-radius: 10px 10px 10px 10px;
  123. box-sizing: border-box;
  124. border: 2px solid black;
  125. background: grey;
  126. -webkit-transition: all 1s;
  127. }
  128.  
  129. a.lynk:hover{
  130. border: 6px solid gray;
  131. }
  132.  
  133. #tabcontainer {
  134. position: absolute;
  135. top: 0px;
  136. bottom: 0px;
  137. left: 10px;
  138. margin: auto;
  139. width: 150px;
  140. height: 480px;
  141. border: 0px solid black;
  142. overflow: hidden;
  143. }
  144.  
  145. .tabb {
  146. position: relative;
  147. width: 148px;
  148. height: 475px;
  149. border: 0px solid red;
  150. margin-bottom: 5px;
  151. }
  152.  
  153. #headingleft {
  154. position: absolute;
  155. top: 40px;
  156. right: 0px;
  157. height: 20px;
  158. width: 100px;
  159. border: 0px solid black;
  160. margin-right: 5px;
  161. text-align: right;
  162. font-family: 'headerfont';
  163. font-size: 20pt;
  164. }
  165.  
  166. #headingright {
  167. position: absolute;
  168. top: 40px;
  169. left: 5px;
  170. height: 20px;
  171. width: 100px;
  172. border: 0px solid black;
  173. margin-left: 5px;
  174. text-align: left;
  175. font-family: 'headerfont';
  176. font-size: 20pt;
  177. }
  178.  
  179. #textcontainer {
  180. position: absolute;
  181. top: 75px;
  182. left: 0px;
  183. bottom: 0px;
  184. right: 0px;
  185. margin: auto;
  186. height: 380px;
  187. width: 145px;
  188. border: 0px solid black;
  189. box-sizing: border-box;
  190. padding-left: 8px;
  191. padding-right: 8px;
  192. text-align: right;
  193. font-family:'bodyfont';
  194. font-size: 9pt;
  195. overflow: auto;
  196. }
  197.  
  198. </style>
  199.  
  200. <div id="container">
  201. <div id="leftbox">
  202. <div id="tabcontainer">
  203.  
  204. <div id="firstL" class="tabb">
  205. <div id="headingleft">
  206. first header
  207. </div>
  208. <div id="textcontainer">
  209. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
  210.  
  211. </div>
  212. </div>
  213.  
  214. <div id="secondL" class="tabb">
  215. <div id="headingleft">
  216. second header
  217. </div>
  218. <div id="textcontainer">
  219. wordswordswrods
  220. </div>
  221. </div>
  222.  
  223. <div id="thirdL" class="tabb">
  224. <div id="headingleft">
  225. third header
  226. </div>
  227. <div id="textcontainer">
  228. wordswordswrods
  229. </div>
  230. </div>
  231.  
  232. </div>
  233. </div>
  234.  
  235. <div id="centerbox">
  236. </div>
  237.  
  238. <div id="rightbox">
  239.  
  240. <div id="tabcontainer" style="left: 30px;">
  241.  
  242. <div id="fourthL" class="tabb">
  243. <div id="headingright">
  244. fourth header
  245. </div>
  246. <div id="textcontainer" style="text-align: left;">
  247. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
  248. </div>
  249. </div>
  250.  
  251. <div id="fifthL" class="tabb">
  252. <div id="headingright">
  253. fifth header
  254. </div>
  255. <div id="textcontainer" style="text-align: left;">
  256. wordswordswords
  257. </div>
  258. </div>
  259.  
  260. <div id="sixthL" class="tabb">
  261. <div id="headingright">
  262. sixth header
  263. </div>
  264. <div id="textcontainer" style="text-align: left;">
  265. wordswordswords
  266. </div>
  267. </div>
  268.  
  269. </div>
  270. </div>
  271. <div id="selectionone">
  272. <A href=#firstL class="lynk">
  273. </a>
  274. <A href=#secondL class="lynk">
  275. </a>
  276. <A href=#thirdL class="lynk">
  277. </a>
  278. </div>
  279. <div id="selectiontwo">
  280. <A href=#fourthL class="lynk">
  281. </a>
  282. <A href=#fifthL class="lynk">
  283. </a>
  284. <A href=#sixthL class="lynk">
  285. </a>
  286. </div>
  287. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement