Advertisement
Vaellyth

Fawn 3.1 CSS

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