Advertisement
Vaellyth

Fawn 3.2 CSS

Jun 18th, 2017
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.43 KB | None | 0 0
  1. /* Custom profile code for Fawn by Vii <3
  2. + Dawn Dream v.2 */
  3.  
  4. /* Scrollbars - does not work in FireFox q-q */
  5.  
  6. ::-webkit-scrollbar {
  7. width: 5px;
  8. }
  9.  
  10. ::-webkit-scrollbar-track {
  11. background: rgba(251, 205, 228, 0.4);
  12. }
  13.  
  14. ::-webkit-scrollbar-thumb {
  15. background: rgba(211, 255, 255, 0.4);
  16. }
  17.  
  18. /* Fonts */
  19. @font-face {
  20. font-family: Amatic SC;
  21. font-style: normal;
  22. font-weight: 400;
  23. src: url(https://fonts.gstatic.com/s/amaticsc/v9/DPPfSFKxRTXvae2bKDzp5FtXRa8TVwTICgirnJhmVJw.woff2);
  24. unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
  25. }
  26.  
  27. /* Animations */
  28. @keyframes marquee {
  29. 0% { top: 110%; }
  30. 100% { top: -250%; }
  31. }
  32.  
  33. @-webkit-keyframes marquee {
  34. 0% { top: 100%; }
  35. 100% { top: -100%; }
  36. }
  37.  
  38. @-moz-keyframes marquee {
  39. 0% { top: 100%; }
  40. 100% { top: -100%; }
  41. }
  42.  
  43. @keyframes backlight {
  44. 0%, 100% { border-color: #FBCDE4; box-shadow: 0 0 10px 4px #FBCDE4; }
  45. 25% { border-color: #E7CBFF; box-shadow: 0 0 10px 4px #E7CBFF; }
  46. 50% { border-color: #D3FFE1; box-shadow: 0 0 10px 4px #D3FFE1; }
  47. 75% { border-color: #BDBDBD; box-shadow: 0 0 10px 4px #BDBDBD; }
  48. }
  49.  
  50. @-webkit-keyframes backlight {
  51. 0%, 100% { border-color: #FBCDE4; box-shadow: 0 0 10px 4px #FBCDE4; }
  52. 25% { border-color: #E7CBFF; box-shadow: 0 0 10px 4px #E7CBFF; }
  53. 50% { border-color: #D3FFE1; box-shadow: 0 0 10px 4px #D3FFE1; }
  54. 75% { border-color: #BDBDBD; box-shadow: 0 0 10px 4px #BDBDBD; }
  55. }
  56.  
  57. @-moz-keyframes backlight {
  58. 0%, 100% { border-color: #FBCDE4; box-shadow: 0 0 10px 4px #FBCDE4; }
  59. 25% { border-color: #E7CBFF; box-shadow: 0 0 10px 4px #E7CBFF; }
  60. 50% { border-color: #D3FFE1; box-shadow: 0 0 10px 4px #D3FFE1; }
  61. 75% { border-color: #BDBDBD; box-shadow: 0 0 10px 4px #BDBDBD; }
  62. }
  63.  
  64. @keyframes float {
  65. from { transform: translateY(0px); }
  66. to { transform: translateY(30px); }
  67. }
  68.  
  69. @-webkit-keyframes float {
  70. from { -webkit-transform: translateY(0px); }
  71. to { -webkit-transform: translateY(30px); }
  72. }
  73.  
  74. @-moz-keyframes float {
  75. from { -moz-transform: translateY(0px); }
  76. to { -moz-transform: translateY(30px); }
  77. }
  78.  
  79. /* Hidden Modules & Header Adjustment */
  80.  
  81. #friendlist, #bio h2, #content:before, #content:after { display: none !important; }
  82.  
  83. #header { visibility: hidden; overflow: visible !important; }
  84.  
  85. #logo, .navigation { visibility: visible; }
  86.  
  87. /* Page Styles */
  88.  
  89. * {
  90. box-sizing: border-box;
  91. cursor: url(http://aldonydh.elementfx.com/src/cursor_small.ico), default !important;
  92. }
  93.  
  94. body {
  95. background: #D3EEFF;
  96. }
  97.  
  98. /* Font Styles */
  99.  
  100. h2 {
  101. font-family: Amatic SC;
  102. font-size: 28px;
  103. }
  104.  
  105. a {
  106. transition: all .5s linear;
  107. text-shadow: 0 0 1px;
  108. color: #242424;
  109. }
  110.  
  111. a:hover {
  112. color: rgb(211, 255, 255);
  113. }
  114.  
  115. #bio a {
  116. color: rgb(211, 255, 255);
  117. font-family: Amatic SC;
  118. font-size: 22px;
  119. }
  120.  
  121. /* Profile Modules */
  122.  
  123. ul.navigation {
  124. position: absolute;
  125. z-index: 5;
  126. margin: auto;
  127. width: 499px;
  128. left: 657px;
  129. right: 0px;
  130. top: 267px;
  131. transform: rotate(-90deg);
  132. border-radius: 0;
  133. border: none;
  134. background: transparent;
  135. }
  136.  
  137. ul.navigation li {
  138. width: 80%;
  139. text-align: left;
  140. font-family: Amatic SC;
  141. font-size: 20px;
  142. margin: 4px auto;
  143. box-shadow: 0px 0px 2px 1px rgba(38, 38, 38, 0.5);
  144. }
  145.  
  146. ul.navigation li a {
  147. transition: all .5s linear;
  148. color: #242424;
  149. border-left: 1px solid #242424;
  150. }
  151.  
  152. ul.navigation li a:hover {
  153. background: transparent;
  154. }
  155.  
  156. #top-nav-home, #top-nav-forum, #top-nav-shops, #top-nav-search {
  157. transition: all .5s linear;
  158. }
  159.  
  160. #top-nav-home a {
  161. background: rgba(251, 205, 228, 0.7);
  162. }
  163.  
  164. #top-nav-home a:hover {
  165. background: transparent;
  166. color: #242424;
  167. padding-left: 50px;
  168. }
  169.  
  170. #top-nav-forum a {
  171. background: rgba(231, 203, 255, 0.7);
  172. }
  173.  
  174. #top-nav-forum a:hover {
  175. color: #242424;
  176. background: transparent;
  177. padding-left: 50px;
  178. }
  179.  
  180. #top-nav-shops a {
  181. background: rgba(211, 255, 255, 0.7);
  182. }
  183.  
  184. #top-nav-shops a:hover {
  185. background: transparent;
  186. color: #242424;
  187. padding-left: 50px;
  188. }
  189.  
  190. #top-nav-search a {
  191. background: rgba(189, 189, 189, 0.7);
  192. }
  193.  
  194. #top-nav-search a:hover {
  195. background: transparent;
  196. padding-left: 50px;
  197. color: #242424;
  198. }
  199.  
  200. #logo {
  201. position: absolute;
  202. margin: auto;
  203. left: 0px;
  204. right: 0px;
  205. bottom: 40px;
  206. opacity: 0.5;
  207. }
  208.  
  209. #wrap {
  210. width: 100%;
  211. height: 100%;
  212. padding: 0;
  213. position: absolute;
  214. top: 0px;
  215. background: transparent;
  216. border: none;
  217. }
  218.  
  219. #sidebar {
  220. background: linear-gradient(rgba(211, 238, 255, 0.7), rgba(231, 203, 255, 0.7));
  221. border: 1px solid #242424;
  222. box-shadow: 0 0 5px 2px #BDBDBD;
  223. position: absolute;
  224. margin: auto;
  225. left: 0px;
  226. right: 665px;
  227. top: 100px;
  228. width: 180px;
  229. height: 270px;
  230. z-index: 1;
  231. }
  232.  
  233. #sidebar h2 {
  234. position: absolute;
  235. font-size: 72px;
  236. text-align: center;
  237. margin: auto;
  238. left: 770px;
  239. top: -30px;
  240. color: #242424;
  241. text-shadow: 2px 0px 2px #BDBDBD;
  242. transform: rotate(45deg);
  243. }
  244.  
  245. #sidebar img {
  246. mix-blend-mode: multiply;
  247. transition: all .5s linear;
  248. }
  249.  
  250. #sidebar img:hover {
  251. mix-blend-mode: normal;
  252. }
  253.  
  254. #send-message, #view-topics, #view-posts {
  255. position: absolute !important;
  256. animation: none !important;
  257. width: 100%;
  258. background: pink;
  259. left: 0px;
  260. padding: 5px;
  261. border: 1px solid #242424;
  262. box-shadow: 0 0 5px 2px #BDBDBD;
  263. }
  264.  
  265. #send-message {
  266. top: 283px;
  267. background: rgba(231, 203, 255, 0.7);
  268. font-family: Amatic SC;
  269. font-weight: bold;
  270. letter-spacing: 5px;
  271. font-size: 16px;
  272. }
  273.  
  274. #view-topics {
  275. top: 332px;
  276. background: linear-gradient(rgba(231, 203, 255, 0.7), rgba(251, 205, 228, 0.7));
  277. font-family: Amatic SC;
  278. font-size: 16px;
  279. font-weight: bold;
  280. letter-spacing: 5px;
  281. }
  282.  
  283. #view-posts {
  284. top: 376px;
  285. background: rgba(251, 205, 228, 0.7);
  286. font-family: Amatic SC;
  287. font-size: 16px;
  288. font-weight: bold;
  289. letter-spacing: 5px;
  290. }
  291.  
  292. #likes strong, #dislikes strong, #hobbies strong {
  293. float: left;
  294. width: 100%;
  295. font-family: Amatic SC;
  296. font-size: 18px;
  297. text-shadow: 2px 0px 1px rgba(36, 36, 36, 0.5);
  298. }
  299.  
  300. #actions {
  301. font-size: 11px;
  302. margin: auto;
  303. margin-top: 149px;
  304. height: 75px;
  305. background: rgba(255, 205, 228, 0.7);
  306. border: 1px solid #242424;
  307. box-shadow: 0 0 5px 2px #BDBDBD;
  308. overflow: hidden;
  309. text-align: center;
  310. width: 100%;
  311. z-index: 1;
  312. }
  313.  
  314. #actions li {
  315. position: relative;
  316. animation: marquee 30s linear infinite;
  317. -webkit-animation: marquee 30s linear infinite;
  318. -moz-animation: marquee 30s linear infinite;
  319. }
  320.  
  321. #actions:hover li {
  322. animation-play-state: paused;
  323. }
  324.  
  325. #content {
  326. width: 450px;
  327. height: 500px;
  328. margin: auto;
  329. position: absolute;
  330. left: 0px;
  331. right: 0px;
  332. top: 100px;
  333. padding: 0;
  334. border-radius: 0;
  335. background: linear-gradient(rgba(211, 238, 255, 0.7), rgba(231, 203, 255, 0.7), rgba(251, 205, 228, 0.7));
  336. border: 1px solid #242424;
  337. overflow-y: hidden;
  338. box-shadow: 0 0 5px 2px #BDBDBD;
  339. }
  340.  
  341. #bio {
  342. height: 90%;
  343. padding: 5px;
  344. overflow-y: auto;
  345. font-family: Verdana;
  346. z-index: 1;
  347. }
  348.  
  349. #bio i {
  350. font-size: 11px;
  351. text-shadow: 0 0 1px;
  352. }
  353.  
  354. #bio strong {
  355. font-size: 22px;
  356. font-family: Amatic SC;
  357. font-style: normal !important;
  358. text-shadow: 1px 1px 2px #242424;
  359. color: #BDBDBD;
  360. }
  361.  
  362. #bio img {
  363. display: none;
  364. }
  365.  
  366. #comments {
  367. color: transparent;
  368. height: 10%;
  369. transition: all .7s linear;
  370. z-index: 1;
  371. }
  372.  
  373. #comments h2 {
  374. text-align: center;
  375. letter-spacing: 7px;
  376. color: #242424;
  377. padding: 3px;
  378. transition: all .7s linear;
  379. text-shadow: 4px 0px #D3EEFF;
  380. }
  381.  
  382. #comments:hover {
  383. height: 100%;
  384. overflow-y: scroll;
  385. transform: translateY(-91%);
  386. background: #242424;
  387. }
  388.  
  389. #comments:hover h2 {
  390. color: #E7CBFF;
  391. text-shadow: 4px 0px #121212;
  392. }
  393.  
  394. #comments img {
  395. -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  396. -moz-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  397. clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  398. transform: scale(0.9);
  399. }
  400.  
  401. #comment_list li {
  402. margin: 3px auto;
  403. transition: all .5s linear;
  404. box-shadow: inset 0 0 3px 1px transparent;
  405. }
  406.  
  407. #comment_list li:hover {
  408. background: #D3EEFF;
  409. box-shadow: inset 0 0 3px 1px rgba(38, 38, 38, 0.5);
  410. }
  411.  
  412. #comment_list li p {
  413. color: #BDBDBD;
  414. font-size: 11px;
  415. }
  416.  
  417. a.delete.small {
  418. font-family: Amatic SC;
  419. font-size: 14px;
  420. width: 100%;
  421. float: right;
  422. text-align: center;
  423. }
  424.  
  425. #comment_list li:hover p {
  426. color: #242424;
  427. }
  428.  
  429. #comment_list li p > small {
  430. width: 100%;
  431. float: right;
  432. text-align: center;
  433. visibility: hidden;
  434. }
  435.  
  436. #comment_list li p small > small {
  437. visibility: visible;
  438. }
  439.  
  440. #load-more, #comment-button {
  441. width: 100%;
  442. transition: all .3s linear;
  443. margin: 2px auto;
  444. border: none;
  445. font-family: Amatic SC;
  446. font-size: 18px;
  447. }
  448.  
  449. #load-more {
  450. background: linear-gradient(#D3EEFF, #E7CBFF);
  451. }
  452.  
  453. #comment-button {
  454. margin-top: -3px;
  455. background: #FBCDE4;
  456. }
  457.  
  458. #comment-button:hover {
  459. box-shadow: inset 0 0 5px 2px rgba(38, 38, 38, 0.7);
  460. background: #FBCDE4;
  461. color: #242424;
  462. }
  463.  
  464. #comments form span { display: none; }
  465.  
  466. #load-more:hover {
  467. box-shadow: inset 0 0 5px 2px rgba(38, 38, 38, 0.7);
  468. }
  469.  
  470. textarea {
  471. font-family: Verdana;
  472. background: linear-gradient(#FBCDE4, #E7CBFF);
  473. font-size: 11px;
  474. width: 100%;
  475. margin: 5px 0;
  476. }
  477.  
  478. /* Floating Images */
  479.  
  480. #generic_3 {
  481. background: url(http://i1201.photobucket.com/albums/bb346/Mandy_Melancholy/16700230_1152110631552898_7123_zpswyncq8ob.png);
  482. width: 274px;
  483. height: 272px;
  484. position: absolute;
  485. left: 657px;
  486. top: 64px;
  487. right: 0px;
  488. margin: auto;
  489. transform: scale(0.7);
  490. -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  491. -moz-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  492. clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  493. z-index: 6;
  494. }
  495.  
  496. #generic_4 {
  497. background: transparent;
  498. width: 274px;
  499. height: 272px;
  500. position: absolute;
  501. left: 657px;
  502. top: 64px;
  503. right: 0px;
  504. margin: auto;
  505. transform: scale(0.5) rotate(-45deg);
  506. border: 1px solid transparent;
  507. animation: backlight 5s linear infinite;
  508. z-index: 5;
  509. }
  510.  
  511. /* + Gaian */
  512.  
  513. #generic_5 {
  514. position: absolute;
  515. background: url(http://a2.cdn.gaiaonline.com/dress-up/avatar/ava/4a/fb/69538ab9c5fb4a_flip.png?t=1491006398_6.00_11);
  516. width: 120px;
  517. height: 150px;
  518. margin: auto;
  519. left: 860px;
  520. right: 0;
  521. top: 185px;
  522. animation: float 5s alternate infinite;
  523. animation-timing-function: ease-in-out;
  524. -webkit-animation: float 5s alternate infinite;
  525. -webkit-animation-timing-function: ease-in-out;
  526. -moz-animation: float 5s alternate infinite;
  527. -moz-animation-timing-function: ease-in-out;
  528. -o-animation: float 5s alternate infinite;
  529. -o-animation-timing-function: ease-in-out;
  530. opacity: 0.7;
  531. transition: all .5s ease;
  532. -webkit-transition: all .5s ease;
  533. -moz-transition: all .5s ease;
  534. -o-transition: all .5s ease;
  535. z-index: 7;
  536. }
  537.  
  538. #generic_5:hover {
  539. opacity: 0.9;
  540. }
  541.  
  542. /* End Profile Code */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement