Advertisement
althindor

Pro for Anngelinaa

Aug 3rd, 2019
607
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 5.40 KB | None | 0 0
  1. /* Graphics by Cassiel Socks, Code by AlthIndor */
  2.  
  3. html, body {background: repeating-linear-gradient(to right, #FFD088 0px, #FFD088 30px, #FFE8B0 30px, #FFE8B0 60px);}
  4. body {cursor: url('https://i.imgur.com/ASpeBop.png'), default !important;}
  5. body a {text-decoration: none !important;}
  6.  
  7. html {
  8.  --dark-color: #480A12;
  9.  --pink-color: #FFC0C0;
  10.  --bars-color: #94E060;
  11. }
  12.  
  13. /* Fonts */
  14.  
  15. @font-face {
  16.  font-family: 'Lora';
  17.  font-style: normal;
  18.  font-weight: 400;
  19.  src: local('Lora Regular'), local('Lora-Regular'), url(https://fonts.gstatic.com/s/lora/v14/0QIvMX1D_JOuMwr7Iw.woff2) format('woff2');
  20. }
  21.  
  22. @font-face {
  23.  font-family: 'Lora';
  24.  font-style: normal;
  25.  font-weight: 700;
  26.  src: local('Lora Bold'), local('Lora-Bold'), url(https://fonts.gstatic.com/s/lora/v14/0QIgMX1D_JOuO7HeNtxumg.woff2) format('woff2');
  27. }
  28.  
  29. @font-face {
  30.  font-family: 'Lobster Two';
  31.  font-style: normal;
  32.  font-weight: 400;
  33.  src: local('Lobster Two'), local('LobsterTwo'), url(https://fonts.gstatic.com/s/lobstertwo/v12/BngMUXZGTXPUvIoyV6yN5-fN5qU.woff2) format('woff2');
  34. }
  35.  
  36. @font-face {
  37.  font-family: 'Lobster Two';
  38.  font-style: normal;
  39.  font-weight: 700;
  40.  src: local('Lobster Two Bold'), local('LobsterTwo-Bold'), url(https://fonts.gstatic.com/s/lobstertwo/v12/BngRUXZGTXPUvIoyV6yN5-92w7CGwR0.woff2) format('woff2');
  41. }
  42.  
  43. /* Header */
  44.  
  45. #viewer #gaia_header {
  46.  background: var(--dark-color);
  47.  height: 28px !important;
  48.  box-shadow: 0 2px #00000020;
  49. }
  50.  
  51. #gaia_header #header_left, #gaia_header #header_right {
  52.  background: none !important;
  53.  font: 0/27px 'Lobster Two', cursive !important;
  54.  padding: 0 5px !important;
  55.  box-sizing: border-box;
  56. }
  57. #gaia_header #header_right {float: right;}
  58. #gaia_header .spacer {display: none !important;}
  59.  
  60. #header_left img {
  61.  background: #FFFFFF;
  62.  width: 0;
  63.  height: 16px;
  64.  padding: 0 37px 0 0;
  65.  margin: 0 -1px 0 0 !important;
  66.  mask-image: url('https://i.imgur.com/5FTB40o.png');
  67.  -webkit-mask-image: url('https://i.imgur.com/5FTB40o.png');
  68.  transition: background .5s ease-in-out;
  69. }
  70. #header_left img:hover {background: var(--pink-color);}
  71.  
  72. #gaia_header a {
  73.  color: #FFFFFF !important;
  74.  font-size: 12px !important;
  75.  transition: color .5s ease-in-out;
  76. }
  77. #gaia_header a:hover {color: var(--pink-color) !important;}
  78.  
  79. #header_left li:nth-of-type(n+3)::before, #header_right li:nth-last-of-type(n+2)::after {
  80.  content: '●';
  81.  font: 12px/0px 'Lora', serif !important;
  82.  margin: 0 6px;
  83.  position: relative;
  84.  top: -1px;
  85.  opacity: .7;
  86. }
  87.  
  88. /* Columns */
  89.  
  90. #columns, #column_1, #column_2, #column_3 {
  91.  display: block;
  92.  float: none;
  93.  margin: 0;
  94.  position: absolute;
  95.  box-sizing: border-box;
  96.  overflow: visible;
  97. }
  98.  
  99. #columns {
  100.  background: url('https://images2.imgbox.com/97/47/31gJ3bv1_o.png') #FFFFFF left / 410px auto;
  101.  width: 900px;
  102.  height: 580px;
  103.  top: calc(50% - 290px + 10px);
  104.  left: calc(50% - 450px);
  105.  border: 10px solid #480A12;
  106.  border-radius: 80px;
  107.  transform: translateZ(0);
  108. }
  109.  
  110. #columns::before {
  111.  content: url('https://images2.imgbox.com/af/18/HkSLrsft_o.png');
  112.  position: absolute;
  113.  top: -60px;
  114.  left: -120px;
  115.  transform-origin: top left;
  116.  transform: scale(.5);
  117. }
  118.  
  119. @media screen and (max-height: 760px) {
  120.  body {min-height: 760px;}
  121.  #columns {top: 100px;}
  122. }
  123.  
  124. #column_1, #column_2, #column_3 {
  125.  width: 1px;
  126.  height: 1px;
  127.  top: 0;
  128.  left: 0;
  129. }
  130.  
  131. #columns ::-webkit-scrollbar {
  132.  background: #FFFFFF;
  133.  width: 8px;
  134. }
  135.  
  136. #columns ::-webkit-scrollbar-thumb {
  137.  background: var(--bars-color) content-box;
  138.  border: 1px solid transparent;
  139. }
  140.  
  141. /* Panels */
  142.  
  143. .panel, .panel h2 {
  144.  width: 320px;
  145.  margin: 0;
  146.  padding: 0;
  147.  box-sizing: border-box;
  148. }
  149.  
  150. .panel {
  151.  background: rgba(255,232,192,.8);
  152.  color: var(--dark-color);
  153.  font: 11px/1.7 'Lora', serif;
  154.  text-align: justify;
  155.  position: absolute;
  156.  border: 10px solid transparent;
  157.  box-shadow: 0 2px #00000020;
  158.  overflow: hidden;
  159. }
  160.  
  161. .panel a {
  162.  color: #FF4000;
  163.  transition: color .5s ease-in-out;
  164. }
  165. .panel a:hover {color: inherit;}
  166.  
  167. .panel h2 {
  168.  background: rgba(72,10,18,.8);
  169.  height: 40px;
  170.  color: #FFFFFF;
  171.  font: 400 30px/40px 'Lobster Two', cursive;
  172.  text-align: center;
  173.  text-transform: capitalize;
  174.  position: fixed;
  175.  border-radius: 10px 10px 0 0;
  176. }
  177.  
  178. #id_about, #id_footprints {
  179.  padding-right: 10px;
  180.  top: 70px;
  181.  border-radius: 0 0 10px 10px;
  182.  scrollbar-color: var(--bars-color) #FFFFFF;
  183.  scrollbar-width: thin;
  184. }
  185. #id_about h2, #id_footprints h2 {top: 30px;}
  186.  
  187. #id_about {
  188.  height: 460px;
  189.  overflow-y: scroll;
  190. }
  191. #id_about img {max-width: 100% !important;}
  192.  
  193. #id_about, #id_about h2 {left: 180px;}
  194. #id_footprints, #id_footprints h2, .media_panel {left: 530px;}
  195. #id_footprints, .media_panel {height: 220px !important;}
  196. #id_footprints {overflow-y: auto;}
  197.  
  198. .media_panel {
  199.  top: 310px;
  200.  border-radius: 10px;
  201. }
  202. .media_panel h2 {display: none;}
  203.  
  204. /* Media */
  205.  
  206. .media_panel iframe {
  207.  width: 100%;
  208.  height: 100%;
  209. }
  210.  
  211. /* Sun */
  212.  
  213. @keyframes SunRotate {
  214.  0% {transform: rotate(0deg) translate(-500px, -500px);}
  215.  100% {transform: rotate(360deg) translate(-500px, -500px);}
  216. }
  217.  
  218. body::before {
  219.  content: url('https://images2.imgbox.com/dc/08/MmCDJrov_o.png');
  220.  position: fixed;
  221.  bottom: -200px;
  222.  right: 30%;
  223.  transform-origin: bottom right;
  224.  animation: SunRotate 40s -35s linear infinite;
  225. }
  226.  
  227. @media screen and (max-width: 1400px) {
  228.  
  229.   @keyframes SunRotate {
  230.     0% {transform: rotate(0deg) translate(-400px, -400px);}
  231.     100% {transform: rotate(360deg) translate(-400px, -400px);}
  232.   }
  233.  
  234. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement