Advertisement
althindor

Pro for CooI Sword

Dec 6th, 2018
427
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 7.06 KB | None | 0 0
  1. /* Profile by AlthIndor */
  2.  
  3. html, body {background: url('https://images2.imgbox.com/77/c8/8pZFWzbn_o.png');}
  4.  
  5. body {
  6.  --primary-color: #00A040;
  7.  --secondary-color: #FFFFFF;
  8.  --button-color: #606060;
  9.  --shadow-color: rgba(0,0,0,.5);
  10. }
  11.  
  12. /* Fonts */
  13.  
  14. @font-face {
  15.  font-family: 'Open Sans';
  16.  font-style: normal;
  17.  font-weight: 400;
  18.  src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFVZ0b.woff2) format('woff2');
  19. }
  20.  
  21. @font-face {
  22.  font-family: 'Open Sans';
  23.  font-style: normal;
  24.  font-weight: 700;
  25.  src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOUuhp.woff2) format('woff2');
  26. }
  27.  
  28. /* Header */
  29.  
  30. body #gaia_header {
  31.  background: var(--primary-color);
  32.  height: 30px !important;
  33.  box-shadow: 0 2px 10px var(--shadow-color);
  34. }
  35.  
  36. #gaia_header #header_left, #gaia_header #header_right {
  37.  background: none;
  38.  font: 700 0px/30px 'Open Sans', sans-serif !important;
  39.  padding: 0 2px !important;
  40.  box-sizing: border-box;
  41. }
  42. #gaia_header #header_right {float: right;}
  43. #gaia_header .spacer {display: none !important;}
  44. #gaia_header li {margin: 0 5px;}
  45.  
  46. #gaia_header #header_left img {
  47.  background: url('https://gaia.hs.llnwd.net/e1/images/gaia_global/gaia_header/br_gaia_logo_header.png') 0 0 no-repeat;
  48.  background-size: auto 200%;
  49.  width: 0;
  50.  height: 19px;
  51.  padding: 0 41px 0 0;
  52. }
  53. #header_left li:nth-of-type(2) {margin: 0 2px 0 5px;}
  54.  
  55. #gaia_header a {
  56.  color: var(--secondary-color) !important;
  57.  font-size: 12px !important;
  58.  text-decoration: none;
  59.  text-transform: uppercase;
  60. }
  61. @-moz-document url-prefix() {#gaia_header #header_left, #gaia_header #header_right {line-height: 28px !important;}}
  62.  
  63. /* Columns */
  64.  
  65. #columns, #column_1, #column_2 {
  66.  float: none;
  67.  margin: 0;
  68.  position: absolute;
  69. }
  70. #column_3 {display: none;}
  71.  
  72. #columns {
  73.  width: 520px;
  74.  height: 310px;
  75.  top: calc(50% - (310px / 2));
  76.  left: calc(50% - (520px / 2));
  77.  transform: translateZ(0);
  78.  overflow: hidden;
  79. }
  80.  
  81. #column_1 {
  82.  width: 100%;
  83.  height: 100%;
  84.  border: 30px solid transparent;
  85.  box-sizing: border-box;
  86.  overflow: visible;
  87. }
  88.  
  89. #column_2 {
  90.  width: 1px;
  91.  height: 1px;
  92.  top: 0;
  93.  left: 0;
  94.  overflow: visible;
  95. }
  96.  
  97. /* Panels */
  98.  
  99. .panel, .panel h2 {
  100.  margin: 0;
  101.  box-sizing: border-box;
  102. }
  103. .panel a {color: var(--primary-color);}
  104. .panel img {max-width: 100% !important;}
  105.  
  106. .panel {
  107.  color: #404040;
  108.  font: 12px/1.5em 'Open Sans', sans-serif;
  109.  text-align: justify;
  110.  position: absolute;
  111. }
  112.  
  113. .panel:not(#id_contact) {
  114.  border: 10px solid transparent;
  115.  border-radius: 3px;
  116. }
  117.  
  118. #id_about, #id_comments, #id_wishlist {
  119.  padding: 0 10px 0 0;
  120.  overflow-x: hidden;
  121.  overflow-y: scroll;
  122. }
  123.  
  124. #id_about, #id_details {
  125.  background: linear-gradient(to bottom, var(--primary-color) 10px, var(--secondary-color) 10px) border-box;
  126.  height: 200px;
  127.  top: 0;
  128.  border-top-width: 40px !important;
  129.  box-shadow: 0 2px 10px var(--shadow-color);
  130. }
  131.  
  132. #id_comments, #id_wishlist {
  133.  background: var(--secondary-color);
  134.  width: 300px;
  135.  height: 200px;
  136.  top: -300px;
  137.  left: 190px;
  138. }
  139. #id_comments:hover, #id_wishlist:hover {top: 30px;}
  140.  
  141. .panel h2 {
  142.  height: 30px;
  143.  color: var(--secondary-color);
  144.  font: 700 13px/30px 'Open Sans', sans-serif;
  145.  padding: 0 0 0 10px;
  146.  position: fixed;
  147. }
  148.  
  149. #id_about h2, #id_details h2 {
  150.  background: var(--primary-color);
  151.  margin: -40px 0 0 -10px;
  152.  border-top-right-radius: 3px;
  153.  border-top-left-radius: 3px;
  154. }
  155.  
  156. #id_comments h2, #id_wishlist h2 {
  157.  background: var(--button-color);
  158.  width: 140px;
  159.  bottom: 30px;
  160.  border-radius: 3px;
  161.  box-shadow: 0 2px 10px var(--shadow-color);
  162. }
  163. #id_comments:hover h2, #id_wishlist:hover h2 {background: var(--primary-color);}
  164. #id_comments h2 {right: 190px;}
  165. #id_wishlist h2 {right: 30px;}
  166.  
  167. /* Bridge */
  168.  
  169. #id_wishlist h2::after, #id_comments h2::after {
  170.  content: '';
  171.  display: block;
  172.  width: 100%;
  173.  height: 0;
  174.  position: absolute;
  175.  bottom: 30px;
  176.  left: -0;
  177. }
  178. #id_wishlist:hover h2::after, #id_comments:hover h2::after {height: 30px;}
  179.  
  180. /* Details */
  181.  
  182. #id_details {
  183.  padding: 0;
  184.  left: 0;
  185.  overflow: hidden;
  186. }
  187. #id_details, #id_details h2 {width: 140px;}
  188. #id_details .forum_userstatus {display: none;}
  189.  
  190. /* About */
  191.  
  192. #id_about {right: 0;}
  193. #id_about, #id_about h2 {width: 300px;}
  194.  
  195. /* Comments */
  196.  
  197. #id_comments #alerts_banner {display: none;}
  198. #id_comments .dropBox {display: none;}
  199. #id_comments .username {float: none;}
  200. #id_comments h2 ~ p {display: none;}
  201.  
  202. #id_comments dt {
  203.  height: auto;
  204.  text-align: left;
  205.  line-height: 1.1em;
  206.  padding: 0 0 2px 0;
  207.  margin: 0 0 2px 0;
  208.  border-bottom: 1px solid rgba(0,0,0,.2);
  209. }
  210.  
  211. #id_comments .date {
  212.  float: none;
  213.  font: 85%/1.6em monospace;
  214. }
  215. #id_comments .date a {font-weight: normal;}
  216.  
  217. #id_comments dd {
  218.  margin-bottom: 15px;
  219.  position: relative;
  220. }
  221. #id_comments dd:last-of-type {margin-bottom: 0;}
  222.  
  223. #id_comments .deletecomment {
  224.  margin: 0;
  225.  position: absolute;
  226.  bottom: 0;
  227. }
  228. #id_comments .deletecomment ~ .postcontent {margin-bottom: 20px;}
  229. #id_comments .deletecomment br {display: none;}
  230. #id_comments .deletecomment a {text-decoration: none;}
  231.  
  232. #id_comments .deletecomment a:first-of-type::after {
  233.  content: '•';
  234.  margin: 0 2px 0 5px;
  235. }
  236.  
  237. /* Wish List */
  238.  
  239. #id_wishlist {
  240.  display: grid;
  241.  grid-template-columns: repeat(5, 1fr);
  242.  grid-auto-rows: max-content;
  243.  grid-auto-flow: row dense;
  244.  grid-row-gap: 10px;
  245.  grid-column-gap: 10px;
  246.  justify-items: center;
  247. }
  248. #id_wishlist .clear {display: none;}
  249.  
  250. #id_wishlist .owner_checkmark {
  251.  margin: 0;
  252.  top: calc(50% + 4px);
  253.  left: calc(50% - 16px);
  254. }
  255. .premium_sparkle {display: none;}
  256.  
  257. #id_wishlist .item {
  258.  background: rgba(0,0,0,.1);
  259.  width: 30px;
  260.  height: 30px;
  261.  text-align: center;
  262.  padding: 5px;
  263.  position: relative;
  264.  border-radius: 3px;
  265.  box-shadow: 0 0 0 1px rgba(0,0,0,.1) inset;
  266. }
  267.  
  268. #id_wishlist .item:hover {
  269.  background: var(--primary-color);
  270.  box-shadow: none;
  271. }
  272.  
  273. /* Buttons */
  274.  
  275. #id_contact {
  276.  background: none;
  277.  width: 200px;
  278.  height: 30px;
  279.  padding: 0;
  280.  bottom: 0;
  281.  left: 0;
  282. }
  283. #id_contact h2 {display: none;}
  284.  
  285. #id_contact ul:not(.buttons) li, #id_comments h2 + div {
  286.  background: url('https://i.imgur.com/vcNz49l.png') var(--button-color) center;
  287.  background-size: 24px auto;
  288.  width: 30px;
  289.  height: 30px;
  290.  border-radius: 3px;
  291.  box-shadow: 0 2px 10px var(--shadow-color);
  292. }
  293. #id_contact ul:not(.buttons) li:hover, #id_comments h2 + div:hover {background-color: var(--primary-color);}
  294.  
  295. #id_contact ul:not(.buttons) li {
  296.  float: left;
  297.  font-size: 0;
  298.  margin-right: 7px;
  299.  position: relative;
  300. }
  301. #id_contact ul:not(.buttons) li:nth-of-type(1) {background-position: center 3px;}
  302. #id_contact ul:not(.buttons) li:nth-of-type(2) {background-position: center -21px; margin-right: 6px;}
  303. #id_contact ul:not(.buttons) li:nth-of-type(3) {background-position: center -45px;}
  304.  
  305. #id_comments h2 + div {
  306.  background-position: center -141px;
  307.  position: fixed;
  308.  left: 140px;
  309.  bottom: 30px;
  310. }
  311.  
  312. #id_contact ul:not(.buttons) li a, #id_comments h2 + div a {
  313.  width: 100%;
  314.  height: 100%;
  315.  font-size: 0;
  316.  position: absolute;
  317.  top: 0;
  318.  left: 0;
  319. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement