Advertisement
Vaellyth

Mass Effect CSS

Feb 16th, 2017
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.41 KB | None | 0 0
  1. /* custom profile code */
  2.  
  3. @import url(https://fonts.googleapis.com/css?family=Play);
  4.  
  5. @font-face {
  6. font-family: Play;
  7. font-style: normal;
  8. font-weight: 400;
  9. src: url(https://fonts.gstatic.com/s/play/v7/ZNo-5SxCwH1CXgZ-n3bt2g.woff2);
  10. 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; }
  11.  
  12. div { font-family: Play; }
  13.  
  14. a { color: #97DBE7; }
  15.  
  16. a:hover {
  17. text-decoration: none;
  18. font-style: italic;
  19. color: #999;
  20. }
  21.  
  22. @keyframes strobe {
  23. from { color: #EE6F55; }
  24. to { color: #97DBE7; }
  25. }
  26.  
  27. @-webkit-keyframes strobe {
  28. from { color: #E7DBE7; }
  29. to { color: #EE6F55; }
  30. }
  31.  
  32. @-moz-keyframes strobe {
  33. from { color: #E7DBE7; }
  34. to { color: #EE6F55; }
  35. }
  36.  
  37. #logo {
  38. visibility: hidden;
  39. }
  40.  
  41. ::-webkit-scrollbar-track {
  42. background: rgba(100, 100, 100, 0.2);
  43. border-radius: 2px;
  44. }
  45.  
  46. ::-moz-scrollbar-track {
  47. background: rgba(255, 0, 0, 0.1);
  48. border-radius: 2px;
  49. }
  50.  
  51. ::-webkit-scrollbar {
  52. width: 7px;
  53. }
  54.  
  55. ::-moz-scrollbar {
  56. width: 7px;
  57. }
  58.  
  59. ::-webkit-scrollbar-thumb {
  60. background: rgba(0, 0, 0, 0.7);
  61. border-radius: 2px;
  62. }
  63.  
  64. ::-moz-scrollbar-thumb {
  65. background: rgba(0, 0, 0, 0.7);
  66. border-radius: 2px;
  67. }
  68.  
  69. #content:before, #content:after, #likes, #dislikes, #hobbies {
  70. display: none;
  71. }
  72.  
  73. body {
  74. background: #000;
  75. overflow-x: hidden;
  76. }
  77.  
  78. h2 {
  79. font-weight: normal;
  80. font-size: 18px;
  81. text-transform: uppercase;
  82. padding: 2px 3px;
  83. animation: strobe 3s alternate infinite;
  84. -webkit-animation: strobe 3s alternate infinite;
  85. font-family: Play !important;
  86. }
  87.  
  88. #wrap {
  89. margin: auto;
  90. right: 0px;
  91. left: 0px;
  92. background: transparent;
  93. border: none;
  94. width: auto;
  95. height: 700px;
  96. }
  97.  
  98. #generic_2 {
  99. visibility: visible;
  100. position: absolute;
  101. margin: auto;
  102. left: 0px;
  103. right: 0px;
  104. top: 350px;
  105. background: url(http://i.imgur.com/N8HlGzc.gif);
  106. width: 650px;
  107. height: 338px;
  108. border: 2px solid #111;
  109. box-shadow: 0 0 13px 5px #94DBE7;
  110. z-index: 2;
  111. }
  112.  
  113. #sidebar {
  114. background: #111;
  115. position: absolute;
  116. margin: auto;
  117. right: 541px;
  118. top: 352px;
  119. left: 0px;
  120. height: 300px;
  121. padding: 19px 0px 19px 0px;
  122. z-index: 1;
  123. transition: all .5s linear;
  124. }
  125.  
  126. #sidebar img {
  127. position: relative;
  128. left: 50px;
  129. transition: all .5s linear;
  130. background: transparent;
  131. }
  132.  
  133. #sidebar:hover img {
  134. transform: translateX(-264px);
  135. -webkit-transform: translateX(-264px);
  136. -moz-transform: translateX(-264px);
  137. }
  138.  
  139. #sidebar:hover h2 {
  140. border: 1px solid #EE6F55;
  141. box-shadow: 0 0 10px 2px #EE6F55;
  142. }
  143.  
  144. #sidebar h2 {
  145. position: absolute;
  146. transform: rotate(90deg);
  147. width: 336px;
  148. border: 1px solid;
  149. text-align: center;
  150. top: 147px;
  151. right: 4px;
  152. letter-spacing: 11px;
  153. color: #97DBE7;
  154. background: #111;
  155. height: 34px;
  156. padding: 5px 1px;
  157. transition: all .5s linear;
  158. border: 1px solid #97DBE7;
  159. }
  160.  
  161. ul#actions {
  162. position: absolute;
  163. margin:auto;
  164. top: 110px;
  165. right: 200px;
  166. background: #111;
  167. width: 70px;
  168. text-align: center;
  169. font-size: 10px;
  170. border: 1px solid #97DBE7;
  171. transition: all .5s linear;
  172. }
  173.  
  174. ul#actions li {
  175. margin: 10px auto;
  176. color: #666;
  177. }
  178.  
  179. ul#actions li a {
  180. color: #97DBE7;
  181. transition: all .5s linear;
  182. }
  183.  
  184. ul#actions:hover {
  185. border: 1px solid #EE6F55;
  186. box-shadow: 0 0 10px 2px #EE6F55;
  187. }
  188.  
  189. ul#actions:hover li a {
  190. color: #EE6F55;
  191. }
  192.  
  193. ul#actions li a:hover {
  194. color: #97DBE7;
  195. text-decoration: none;
  196. }
  197.  
  198. #content {
  199. background: transparent;
  200. position: absolute;
  201. margin: auto;
  202. left: 0px;
  203. right: 0px;
  204. width: 750px;
  205. height: 750px;
  206. border: none;
  207. }
  208.  
  209. #bio {
  210. position: absolute;
  211. margin: auto;
  212. top: 252px;
  213. left: 702px;
  214. right: 0px;
  215. background: #111;
  216. height: 328px;
  217. padding: 10px 0px 0px 45px;
  218. width: 0px;
  219. transition: all .5s linear;
  220. border: 1px solid #94DBE7;
  221. color: transparent;
  222. font-size: 10px;
  223. letter-spacing: 1px;
  224. font-family: Arial;
  225. }
  226.  
  227. #bio h2 {
  228. position: relative;
  229. background: transparent;
  230. width: 338px;
  231. text-align: center;
  232. transform: rotate(270deg);
  233. top: 141px;
  234. right: 198px;
  235. letter-spacing: 7px;
  236. color: #97DBE7;
  237. transition: all .5s linear;
  238. }
  239.  
  240. #bio:hover {
  241. width: 200px;
  242. color: #EE6F55;
  243. border: 1px solid #EE6F55;
  244. box-shadow: 0 0 12px 2px #E66F55;
  245. overflow-y: scroll;
  246. }
  247.  
  248. #bio:hover h2 {
  249. color: transparent;
  250. }
  251.  
  252. #friendlist {
  253. position: absolute;
  254. width: 300px;
  255. height: 200px;
  256. padding: 10px;
  257. z-index: 1;
  258. border: 2px solid #97DBE7;
  259. top: -49px;
  260. left: 438px;
  261. background: rgba(151, 219, 231, 0.5);
  262. transition: all 1s ease;
  263. opacity: 0;
  264. }
  265.  
  266. #friendlist:hover {
  267. opacity: 1;
  268. transform: translateX(150px);
  269. }
  270.  
  271. #friendlist h2 {
  272. text-align: center;
  273. }
  274.  
  275. #friendlist img {
  276. width: 35px;
  277. border-radius: 5px;
  278. }
  279.  
  280. #comments {
  281. position: absolute;
  282. background: #111;
  283. margin: auto;
  284. left: 0px;
  285. right: 0px;
  286. top: 590px;
  287. width: 630px;
  288. height: 150px;
  289. padding: 19px 10px;
  290. border: 1px solid #97DBE7;
  291. transition: all .5s linear;
  292. overflow-y: scroll;
  293. }
  294.  
  295. #comments:hover {
  296. border: 1px solid #EE6F55;
  297. box-shadow: 0 0 15px 2px #EE6F55;
  298. }
  299.  
  300. #comments:hover a {
  301. color: #EE6F55 !important;
  302. }
  303.  
  304. #comments:hover a.delete.small {
  305. color: #666 !important;
  306. }
  307.  
  308. #comments:hover img {
  309. opacity: 0.9;
  310. border: 1px solid #EE6F55;
  311. }
  312.  
  313. form {
  314. position: absolute;
  315. width: 325px;
  316. margin: auto;
  317. left: 0px;
  318. right: 0px;
  319. }
  320.  
  321. span#charsLeft {
  322. color: #EE6F55 !important;
  323. padding-left: 130px;
  324. }
  325.  
  326. span {
  327. color: #666;
  328. font-size: 9px;
  329. }
  330.  
  331. textarea {
  332. width: 200px;
  333. background: #666;
  334. color: #111;
  335. font-family: Mono;
  336. font-size: 10px;
  337. border: 1px solid #97DBE7;
  338. }
  339.  
  340. #load-more {
  341. position: relative;
  342. margin: auto;
  343. left: 438px;
  344. top: 25px;
  345. background: transparent;
  346. border: 1px solid #EE6F55;
  347. padding: 2px;
  348. font-size: 10px;
  349. color: #EE6F55;
  350. transition: all .5s linear;
  351. z-index: 1;
  352. font-family: Play;
  353. }
  354.  
  355. #comment-button {
  356. position: relative;
  357. right: 5px;
  358. top: 5px;
  359. background: transparent;
  360. border: 1px solid #97DBE7;
  361. color: #97DBE7;
  362. padding: 2px;
  363. font-size: 10px;
  364. transition: all .5s linear;
  365. font-family: Play;
  366. }
  367.  
  368. #comment-button:hover {
  369. background: #97DBE7;
  370. color: #111;
  371. }
  372.  
  373. #load-more:hover {
  374. color: #111;
  375. background: #EE6F55;
  376. }
  377.  
  378. #comments h2 {
  379. text-align: center;
  380. position: relative;
  381. top: -15px;
  382. letter-spacing: 17px;
  383. color: #97DBE7;
  384. padding-left: 30px;
  385. }
  386.  
  387. #comment_list img {
  388. width: 30px;
  389. height: 30px;
  390. border-radius: 5px 50%;
  391. border: 1px solid #94DBE7;
  392. float: right !important;
  393. opacity: 0.6;
  394. transition: all .5s linear;
  395. }
  396.  
  397. #comment_list img:hover {
  398. transform: translateY(-5px);
  399. }
  400.  
  401. #comment_list {
  402. color: transparent;
  403. }
  404.  
  405. #comment_list a {
  406. font-family: Play;
  407. float: right;
  408. padding-right: 20px;
  409. color: #97DBE7 !important;
  410. transition: all .5s linear;
  411. }
  412.  
  413. #comment_list a.delete.small {
  414. color: #EE6F55 !important;
  415. text-transform: lowercase;
  416. font-size: 10px;
  417. margin-bottom: 5px;
  418. letter-spacing: 1px;
  419. transition: all .5s linear;
  420. }
  421.  
  422. #comment_list li {
  423. padding: 5px;
  424. margin: 5px;
  425. transition: all .5s ease;
  426. }
  427.  
  428. #comment_list li:hover {
  429. background: rgba(0, 0, 0, 0.3);
  430. border-radius: 5px;
  431. }
  432.  
  433. #comment_list p {
  434. color: #666;
  435. text-align: right;
  436. border-top: 1px solid #97DBE7;
  437. font-size: 10px;
  438. letter-spacing: 1px;
  439. padding: 5px;
  440. font-family: Sans;
  441. }
  442.  
  443. ul.navigation {
  444. position: absolute;
  445. margin: auto;
  446. left: 0px;
  447. right: 0px;
  448. top: 323px;
  449. width: 650px;
  450. border-radius: 0px;
  451. border: 1px solid #97DBE7;
  452. background: #111;
  453. z-index: 1;
  454. transition: all .5s linear;
  455. }
  456.  
  457. ul.navigation:hover {
  458. border: 1px solid #EE6F55;
  459. box-shadow: 0 0 10px 2px #EE6F55;
  460. }
  461.  
  462. ul.navigation li {
  463. width: 25%;
  464. display: block;
  465. }
  466.  
  467. ul.navigation li a {
  468. text-transform: uppercase;
  469. color: #97DBE7;
  470. letter-spacing: 1px;
  471. font-family: Play;
  472. transition: all .5s linear;
  473. }
  474.  
  475. ul.navigation li a:hover {
  476. background: #EE6F55;
  477. color: #666;
  478. }
  479.  
  480. #generic_3 {
  481. width: 245px;
  482. height: 250px;
  483. background: url(http://i.imgur.com/K17YGKM.gif);
  484. position: absolute;
  485. margin: auto;
  486. top: 35px;
  487. right: 498px;
  488. left: 0px;
  489. border: 2px solid #97DBE7;
  490. }
  491.  
  492. #generic_4 {
  493. position: absolute;
  494. margin: auto;
  495. top: 35px;
  496. right: 0px;
  497. left: 329px;
  498. width: 417px;
  499. height: 250px;
  500. background: url(http://imgur.com/40gUJw4.gif);
  501. border: 2px solid #97DBE7;
  502. }
  503.  
  504. #generic_5 {
  505. position: absolute;
  506. top: 890px;
  507. width: 500px;
  508. height: 260px;
  509. margin: auto;
  510. left: 0px;
  511. right: 0px;
  512. background: url(http://i.imgur.com/sBYNDgQ.gif);
  513. border: 2px solid #97DBE7;
  514. margin-bottom: 20px;
  515. }
  516.  
  517. .bbmedia {
  518. width: 150px !important;
  519. height: 117px !important;
  520. margin: auto;
  521. position: fixed;
  522. left: 80px;
  523. bottom: 80px;
  524. z-index: 1;
  525. border: 1px solid #97DBE7;
  526. box-shadow: 0 0 12px 2px #97DBE7;
  527. }
  528.  
  529. iframe {
  530. width: 150px;
  531. height: 117px;
  532. }
  533.  
  534. /* end profile code*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement