Advertisement
Guest User

Untitled

a guest
Mar 21st, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.09 KB | None | 0 0
  1. [sc=body][sc=tabbox][hide= ][sc=tabbed_interface horizontal][
  2. ][ul][li]1[/li][
  3. ][li]2[/li][
  4. ][li]3[/li][/ul][
  5. ][sc=tab-active]content 1[/sc][
  6. ][sc=tab]content 2[/sc][
  7. ][sc=tab]content 3[/sc]
  8. [/sc][/hide][/sc]
  9.  
  10.  
  11. [sc=bg][/sc][sc=credit]bg: official pkmn art | code by [url="https://pokefarm.com/user/eggsy"]eggsy[/url][/sc][/sc]
  12.  
  13. [style]
  14.  
  15. * {
  16. box-sizing: border-box;
  17. }
  18. .body {
  19. width: 300px;
  20. background-color: white;
  21. min-height: 200px;
  22. }
  23. .tabbed_interface {
  24. > ul {
  25. background: transparent;
  26. display: grid;
  27. grid-template-columns: 33% 33% 33%;
  28. padding-left: 43px;
  29. padding-top: 5px;
  30. padding-bottom: 5px;
  31. > li {
  32. display: flex;
  33. flex: auto;
  34. align-items: center;
  35. justify-content: space-around;
  36. height: 50px;
  37. width: 50px;
  38. border-radius: 50%;
  39. background-color: black;
  40. border: 5px solid white;
  41. color: white;
  42. &.tab-active {
  43. color: black;
  44. background-color: #FFDE00;
  45. border: 4px solid black;
  46. }
  47. }
  48. > li:hover {
  49. color: black;
  50. background-color: #FFDE00;
  51. }
  52. }
  53. > div {
  54. background: rgba(255, 255, 255, 0.9);
  55. margin-left: 6px;
  56. text-align: center;
  57. box-shadow: 0 0 0 transparent;
  58. border: none;
  59. color: black;
  60. padding-left: 5px;
  61. padding-right: 5px;
  62. max-height: 230px;
  63. overflow: scroll;
  64. padding-top: 0.5em;
  65. padding-bottom: 0.5em;
  66. }
  67. }
  68. .tabbox .panel {
  69. position: absolute;
  70. margin-left: 125px;
  71. > h3 {
  72. width: 50px;
  73. height: 50px;
  74. border: 5px solid white;
  75. background-color: black;
  76. color: white;
  77. border-radius: 50%;
  78. position: static;
  79. > a {
  80. color: black;
  81. }
  82. }
  83. > div {
  84. margin-left: -43%;
  85. width: 290px;
  86. }
  87. border: none;
  88. background: none;
  89. box-shadow: 0 0 0 transparent;
  90. }
  91.  
  92. .bg {
  93. background-image: url('https://assets.pokemon.com/static2/_ui/img/chrome/external_link_bumper.png');
  94. background-size: 100% auto;
  95. min-height: 300px;
  96. background-repeat: no-repeat;
  97. }
  98. .tooltip_content {
  99. color: black;
  100. background-color: white;
  101. border: 1px solid #F1252C;
  102. margin-left: 44%;
  103. }
  104. span.bbcode_tooltip {
  105. border-bottom: 1px dashed #F1252C;
  106. }
  107. a {
  108. color: #F1252C;
  109. text-decoration: none;
  110. }
  111. a:hover {
  112. letter-spacing: 1px;
  113. transition: all 0.5s ease;
  114. }
  115. .expbar {
  116. width: 90%;
  117. background-color: white;
  118. color: black;
  119. border: 2px solid black;
  120. > div {
  121. background-color: #FFDE00;
  122. border-right: 1px solid black;
  123. }
  124. }
  125. .credit {
  126. font-size: 9px;
  127. display: inline;
  128. float: right;
  129. text-align: right;
  130. padding-right: 10px;
  131. background-color: white;
  132. width: 100%;
  133. color: black;
  134. padding-top: 2px;
  135. padding-bottom: 2px;
  136. }
  137.  
  138. [/style]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement