Advertisement
oliviacodes

getting even

Nov 6th, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.86 KB | None | 0 0
  1.  
  2. [dohtml]
  3. <link href="https://fonts.googleapis.com/css?family=Josefin+Sans:100,100i,300,300i,400,400i,600,600i,700,700i" rel="stylesheet">
  4. <link href="https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i" rel="stylesheet">
  5.  
  6. <div id="marble">
  7. <div id="marble-bg">
  8.  
  9. <img src="IMG/GIF HERE, WILL RESIZE">
  10. <h1>first m. last</h1>
  11. <div class="marbletabs">
  12.  
  13. <div class="marbletab">
  14. <input type="radio" id="marbletab-1" name="marbletab-group-1" checked>
  15. <label for="marbletab-1" title="about"></label>
  16. <div class="marblecontent">
  17. <h2>header</h2>
  18.  
  19. TEXT HERE
  20.  
  21. </div>
  22. </div>
  23.  
  24.  
  25. <div class="marbletab">
  26. <input type="radio" id="marbletab-2" name="marbletab-group-1">
  27. <label for="marbletab-2" title="friends"></label>
  28. <div class="marblecontent">
  29. <h2>header</h2>
  30.  
  31. FRIENDS HERE
  32.  
  33. </div>
  34. </div>
  35.  
  36.  
  37. <div class="marbletab">
  38. <input type="radio" id="marbletab-3" name="marbletab-group-1">
  39. <label for="marbletab-3" title="enemies"></label>
  40. <div class="marblecontent">
  41. <h2>header</h2>
  42.  
  43. ENEMIES HERE
  44.  
  45. </div>
  46. </div>
  47.  
  48. <div class="marbletab">
  49. <input type="radio" id="marbletab-4" name="marbletab-group-1">
  50. <label for="marbletab-4" title="lovers"></label>
  51. <div class="marblecontent">
  52. <h2>header</h2>
  53.  
  54. LOVERS HERE
  55.  
  56. </div>
  57. </div>
  58.  
  59. </div></div>
  60. <a href="oliviacodes.tumblr.com"><div style="width: 400px; margin: 10px auto; text-align: right; font-size: 8px; font-family: arial; text-transform: uppercase; color: #aaa;">oliviacodes</div></a>
  61.  
  62.  
  63. <style>
  64. #marble {height: 550px; width: 400px; background-image: url(https://i.pinimg.com/originals/18/fc/63/18fc63a026eec451d68c5375b20daada.jpg); background-size: cover; background-position: center; margin: auto; position: relative}
  65. #marble-bg {height: 450px; width: 250px; background: #eee; position: absolute; left: 75px}
  66. #marble img {height: 60px!important; width: 60px!important; -webkit-border-radius: 100%; -moz-border-radius: 100%; -ms-border-radius: 100%; -o-border-radius: 100%; border: 1px solid #2B3744; object-fit: cover; object-position: center; top: 50px; position: absolute; left: 60px}
  67. #marble h1 {font-family: josefin sans; color: #2B3744; font-size: 15px; font-weight: 700; letter-spacing: 2px; width: 450px; height: 20px; line-height: 20px; position: absolute; -webkit-transform: rotate(-90deg);background: none;text-align: right; top: 230px; right: -5px; }
  68. #marble h2 {font-family: josefin sans; text-transform: lowercase; font-size: 15px; color: #2B3744; letter-spacing: 2px; margin-top: 0; margin-bottom: 10px;}
  69. .marbletabs {
  70. margin: 0px auto;
  71. position: relative;
  72. width: 190px;
  73. height: 420px;
  74. }
  75.  
  76. .marbletab {
  77. float: left;
  78. }
  79.  
  80. .marbletab label {
  81. display: block;
  82. width: 5px;
  83. height: 5px;
  84. background: #2B3744;
  85. border: 1px solid #2B3744;
  86. margin: 0px 4px;
  87. position: relative;
  88. left: 30px;
  89. top: 30px;
  90. z-index: 1;
  91. -webkit-border-radius: 100%;
  92. -moz-border-radius: 100%;
  93. -ms-border-radius: 100%;
  94. -o-border-radius: 100%;
  95.  
  96. }
  97.  
  98. .marbletab input[type=radio]:checked ~ label {
  99. background: #eee;
  100. z-index: 2;
  101. }
  102.  
  103. .marbletab input[type=radio] {
  104. display: none;
  105. }
  106.  
  107. .marblecontent {
  108. position: absolute;
  109. bottom: -10px;
  110. right: -10px;
  111. background: #eee;
  112. border: none;
  113. width: 165px;
  114. height: 300px;
  115. font-family: lato;
  116. font-weight: 300;
  117. font-size:11px; color: #333;
  118. overflow: auto; padding-right: 5px;
  119. line-height: 13px; text-align: justify;
  120. opacity: 0; -webkit-transition: 0.3s; -moz-transition: 0.3s; -ms-transition: 0.3s; -o-transition: 0.3s;
  121. }
  122.  
  123. .marbletab input[type=radio]:checked ~ label ~ .marblecontent {
  124. z-index: 1; opacity: 1
  125. }
  126.  
  127. .marblecontent::-webkit-scrollbar {width: 8px}
  128. .marblecontent::-webkit-scrollbar-thumb {background-image: url(https://i.pinimg.com/originals/18/fc/63/18fc63a026eec451d68c5375b20daada.jpg); background-size: cover; border-left: 3px solid #eee;}
  129. .marblecontent::-webkit-scrollbar-track {background: #eee!important; border: none!important}
  130. </style>
  131.  
  132. [/dohtml]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement