Advertisement
Vaellyth

JustiCSS

Sep 8th, 2021
5,369
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 17.29 KB | None | 0 0
  1. /*------------- Personalised profile CSS for Justice -------------*/
  2. /*--------------------- written by Minerva ---------------------*/
  3. /* please do not copy, but feel free to edit for personal use <3 */
  4. /*-------------------------------------------------------------*/
  5.  
  6. /* Colour Variables */
  7. :root {
  8. --eerie-black: #1C1C1CFF;
  9. --rich-black: #111111;
  10. --cream: #FFFED5FF;
  11.   /* Purple colour - Change this to alter theme - default #150E1B */
  12. --xiketic: #150E1BFF;
  13.   /* Gold colour - Change this to alter theme - default #EEDD00DD */
  14. --sunglow: #EEDD00DD;
  15. --blaqq: linear-gradient(to bottom, #150E1B, #111);
  16. --blaqq-right: linear-gradient(to right, #150E1B, #111);
  17. }
  18.  
  19. /*-----------------------------------------*/
  20.  
  21. /* Custom Font */
  22. /* latin-ext */
  23. @font-face {
  24.   font-family: Zen Loop;
  25.   font-style: normal;
  26.   font-weight: 400;
  27.   src: url(https://fonts.gstatic.com/s/zenloop/v1/h0GrssK16UsnJwHsEJ96oQ3n5g.woff2);
  28.   unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  29. }
  30.  
  31. /* latin */
  32. @font-face {
  33.   font-family: Zen Loop;
  34.   font-style: normal;
  35.   font-weight: 400;
  36.   src: url(https://fonts.gstatic.com/s/zenloop/v1/h0GrssK16UsnJwHsEJ90oQ0.woff2);
  37.   unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  38. }
  39.  
  40. /*-----------------------------------------*/
  41.  
  42. /* Hidden Elements */
  43. #profileContainer #menu p,
  44. #menu #menuMobile,
  45. #menu #menuToggle,
  46. h3,
  47. .bottom-halfDivider,
  48. .bottom-halfTitles,
  49. .commentsBubble:before { display: none; }
  50.  
  51. /*-----------------------------------------*/
  52.  
  53. /* Global && Body Style */
  54. * { box-sizing: border-box; }
  55.  
  56. html,
  57. body,
  58. #page-content,
  59. #page-content #profileWrapper {
  60.   position: static;
  61.   height: 100%;
  62.   width: 100%;
  63.   margin: 0;
  64. }
  65.  
  66. /*-----------------------------------------*/
  67.  
  68. /* Navbar */
  69. #profileContainer #menu {
  70.   position: fixed;
  71.   margin: 0;
  72.   left: 0;
  73.   top: initial;
  74.   padding: 0;
  75.   width: 10%;
  76.   height: 100%;
  77.   z-index: 9999;
  78. }
  79.  
  80. #profileContainer #menu #menuNormal {
  81.   display: flex;
  82.   flex-direction: column;
  83.   justify-content: space-evenly;
  84.   width: 100%;
  85.   height: 100%;
  86.   margin: 0;
  87.   padding: 0;
  88. }
  89.  
  90. #menu #menuNormal li {
  91.   display: inline-flex;
  92.   margin: auto;
  93.   width: 100%;
  94.   height: 100%;
  95.   border-right: 5px solid #111;
  96. }
  97.  
  98. #menu #menuNormal li a {
  99.   display: inline-flex;
  100.   text-transform: lowercase;
  101.   font: 20px Zen Loop;
  102.   color: var(--sunglow);
  103.   width: 100%;
  104.   height: 100%;
  105.   justify-content: center;
  106.   align-items: center;
  107.   transition: all 0.1s linear;
  108.   background: var(--blaqq-right);
  109.   border-right: 1px solid;
  110. }
  111.  
  112. #menu #menuNormal li a:hover {
  113.   text-decoration: none;
  114.   color: var(--cream);
  115.   border-color: var(--cream);
  116.   text-shadow: 0 0 2px;
  117. }
  118.  
  119. /*-----------------------------------------*/
  120.  
  121. /* Profile Wrapper */
  122. #page-content #profileWrapper #profileContainer {
  123.   width: 100%;
  124.   height: 100%;
  125.   margin: 0;
  126.   border: 0;
  127.   padding: 0;
  128.   overflow: auto;
  129.   /* Change the variable value to alter bg overlay colour */
  130.   background: var(--sunglow) url(https://starfarer-studio.space/media/external/hieroglyphs.png) bottom center;
  131.   background-size: cover;
  132.   /* Change value to 'overlay', 'lighten', or 'darken' for dark colours OR 'luminosity', 'multiply', or 'darken' for light colours */
  133.   background-blend-mode: luminosity;
  134. }
  135.  
  136. #profileContainer #top-halfContainer,
  137. #profileContainer #bottom-halfContainer {
  138.   width: 90%;
  139.   margin: 0 0 0 auto;
  140.   padding: 50px;
  141. }
  142.  
  143. /*-----------------------------------------*/
  144.  
  145. /* Profile Top Modules - Actions, Avatar, Bio, Video */
  146. #profileContainer #top-halfContainer {
  147.   min-height: 489px;
  148. }
  149.  
  150. #top-halfContainer #leftHalf,
  151. #top-halfContainer #rightHalf {
  152.   padding: 0;
  153.   height: 100%;
  154.   display: flex;
  155. }
  156.  
  157. #top-halfContainer #leftHalf {
  158.   margin: 0 auto auto 0;
  159.   width: 35%;
  160.   padding: 0 0 0 25px;
  161. }
  162.  
  163. #top-halfContainer #leftHalf img {
  164.   border: 1px solid var(--sunglow);
  165.   outline: 5px solid #111;
  166.   margin: 0 auto auto 0;
  167.   min-width: 260px;
  168.   max-width: 260px;
  169.   background: var(--blaqq);
  170. }
  171.  
  172. #top-halfContainer #leftHalf #media {
  173.   position: fixed;
  174.   height: 40px;
  175.   width: 3%;
  176.   overflow: hidden;
  177.   bottom: -30px;
  178.   left: 10%;
  179.   border-radius: 0;
  180. }
  181.  
  182. #media iframe {
  183.   border-radius: 0;
  184.   position: absolute;
  185.   bottom: 0;
  186.   right: -667px;
  187.   width: 720px;
  188.   max-width: 720px;
  189. }
  190.  
  191. #top-halfContainer #rightHalf {
  192.   margin: 0 0 auto auto;
  193.   width: 65%;
  194.   display: flex;
  195.   flex-direction: column;
  196.   padding: 0px 25px 0 0;
  197. }
  198.  
  199. #top-halfContainer #aboutMe {
  200.   margin: 50px auto auto;
  201.   display: flex;
  202.   align-items: center;
  203.   justify-content: center;
  204.   text-align: center;
  205.   width: 100%;
  206.   min-height: 150px;
  207.   height: 239px;
  208.   padding: 5px;
  209.   overflow: auto;
  210.   border: 1px solid var(--sunglow);
  211.   outline: 5px solid #111;
  212.   background: var(--blaqq);
  213. }
  214.  
  215. #top-halfContainer #aboutMe p {
  216.   color: var(--cream);
  217.   font: 10px Verdana;
  218.   line-height: 150%;
  219.   margin: 2.5px auto;
  220. }
  221.  
  222. #top-halfContainer #rightHalf #user-cardContainer {
  223.   width: 100%;
  224.   height: 100px;
  225.   margin: 0px 0 auto auto;
  226.   padding: 0;
  227.   border-radius: 0;
  228.   border: 1px solid var(--sunglow);
  229.   outline: 5px solid #111;
  230. }
  231.  
  232. #rightHalf #user-cardContainer #user-card {
  233.   width: 100%;
  234.   height: 100%;
  235.   margin: 0;
  236.   padding: 0;
  237.   border-radius: 0;
  238.   border: 0;
  239.   display: flex;
  240.   flex-direction: column;
  241.   background: var(--blaqq);
  242. }
  243.  
  244. #user-card #leftCard,
  245. #user-card #rightCard {
  246.   margin: 0;
  247.   padding: 0px;
  248.   display: inline-flex;
  249.   height: 100%;
  250. }
  251.  
  252. #user-card #leftCard {
  253.   flex-wrap: wrap;
  254.   width: 100%;
  255. }
  256.  
  257. #user-card #leftCard p {
  258.   display: inline-flex;
  259.   width: 100%;
  260.   height: 100%;
  261.   justify-content: center;
  262.   align-items: center;
  263.   margin: 0;
  264.   font: 62px Zen Loop;
  265.   color: var(--sunglow) !important;
  266.   text-shadow: 0 0 5px rgba(255, 255, 255, 0.75);
  267.   letter-spacing: 2px;
  268. }
  269.  
  270. #user-card #leftCard ul {
  271.   width: 51%;
  272.   height: 100%;
  273.   margin: 0 auto auto 0;
  274.   position: relative;
  275.   top: -90px;
  276.   padding: 5px;
  277.   opacity: 0;
  278.   transition: all 0.1s linear;
  279.   display: inline-flex;
  280.   flex-direction: column;
  281.   background: var(--blaqq);
  282. }
  283.  
  284. #user-card #leftCard ul li {
  285.   margin: 0;
  286.   height: 100%;
  287.   display: inline-flex;
  288.   font: 14px Zen Loop;
  289.   align-items: center;
  290.   color: var(--sunglow);
  291.   font-weight: bold;
  292. }
  293.  
  294. #user-card #leftCard ul li:last-of-type {
  295.   justify-content: space-evenly;
  296.   color: transparent;
  297.   margin: 0 auto;
  298.   position: relative;
  299.   bottom: 5px;
  300. }
  301.  
  302. #user-card #leftCard ul li:last-of-type a {
  303.   color: var(--sunglow);
  304.   margin: 0 5px;
  305.   text-decoration-color: var(--cream);
  306.   transition: all 0.1s linear;
  307. }
  308.  
  309. #user-card #leftCard ul li a:hover {
  310.   text-shadow: 0 0 2px;
  311.   color: var(--cream);
  312. }
  313.  
  314. #user-card #leftCard ul li span {
  315.   font: 8px Verdana;
  316.   margin: 0 5px;
  317.   color: var(--cream);
  318. }
  319.  
  320. #user-card #rightCard {
  321.   width: 50%;
  322.   height: 100%;
  323.   margin: 0 0 auto auto;
  324.   padding: 0;
  325.   position: relative;
  326.   top: -99px;
  327.   z-index: 1;
  328.   background: var(--blaqq);
  329.   opacity: 0;
  330.   transition: all 0.1s linear;
  331. }
  332.  
  333. #user-card #rightCard #buttons {
  334.   width: 100%;
  335.   height: 100px;
  336.   margin: 0;
  337.   display: inline-flex;
  338.   padding: 5px 0px;
  339. }
  340.  
  341. #user-card #rightCard #buttons li {
  342.   display: inline-flex;
  343.   width: 20%;
  344.   margin: 0 20px 0 0px;
  345.   border-radius: 0;
  346.   height: 50%;
  347.   padding: 0px;
  348.   overflow: hidden;
  349.   align-self: center;
  350.   border: 1px solid var(--cream);
  351.   background: var(--xiketic);
  352. }
  353.  
  354. #user-card #rightCard #buttons li:hover {
  355.   border-color: transparent;
  356. }
  357.  
  358. #rightCard #buttons li a {
  359.   margin: 0 auto 0;
  360.   display: inline-flex;
  361.   padding: 5px;
  362.   font: 14px Zen Loop;
  363.   font-weight: bold;
  364.   height: 100%;
  365.   width: 100%;
  366.   align-items: center;
  367.   color: var(--sunglow);
  368. }
  369.  
  370. #rightCard #buttons li:hover a {
  371.   color: var(--cream);
  372. }
  373.  
  374. #user-card:hover #rightCard,
  375. #user-card:hover #leftCard ul {
  376.   opacity: 1;
  377. }
  378.  
  379. /*-----------------------------------------*/
  380.  
  381. /* Bottom Modules - Achievements, Comments, Friends */
  382. #profileContainer #bottom-halfContainer {
  383.   justify-content: center;
  384.   flex-wrap: wrap;
  385.   padding-top: 0;
  386. }
  387.  
  388. #bottom-halfContainer #avatarCollection,
  389. #bottom-halfContainer #friendsList,
  390. #bottom-halfContainer #comments {
  391.   padding: 0;
  392.   border: 1px solid var(--sunglow);
  393.   outline: 5px solid #111;
  394.   display: flex;
  395.   width: 100%;
  396.   margin: 0 25px 50px;
  397.   background: var(--blaqq);
  398. }
  399.  
  400. #avatarCollection #view-allachievements,
  401. #friendsList #view-allFriends {
  402.   display: inline-flex;
  403.   width: 100%;
  404.   justify-content: center;
  405.   padding: 5px 0;
  406.   margin: 5px auto;
  407.   text-transform: lowercase;
  408.   letter-spacing: 1px;
  409.   font: 14px Zen Loop;
  410.   color: var(--cream);
  411. }
  412.  
  413. #bottom-halfContainer #avatarCollection {}
  414.  
  415. #bottom-halfContainer #avatarCollection #achievementList { width: 100%; }
  416.  
  417. #avatarCollection #achievementList ul {
  418.   min-width: 100%;
  419.   width: 100%;
  420.   margin: 0;
  421.   display: inline-flex;
  422.   justify-content: space-evenly;
  423. }
  424.  
  425. #avatarCollection #achievementList ul .aviCollection {
  426.   border-radius: 0;
  427.   border: 1px solid var(--cream) !important;
  428.   margin: 10px 5px;
  429.   display: flex;
  430.   opacity: 0.7;
  431. }
  432.  
  433. #bottom-halfContainer #friendsList {}
  434.  
  435. #bottom-halfContainer #friendsList ul {
  436.   display: flex;
  437.   justify-content: space-evenly;
  438.   padding: 5px;
  439.   margin: 0 auto 5px;
  440.   width: 100%;
  441. }
  442.  
  443. #friendsList ul .friendsThumbs {
  444.   border-radius: 0;
  445.   border: 1px solid var(--cream);
  446.   margin: auto;
  447. }
  448.  
  449. #friendsList ul .friendsThumbs a {
  450.   overflow: hidden;
  451.   margin: auto;
  452. }
  453.  
  454. .friendsThumbs a img {
  455.   height: auto;
  456.   margin: auto;
  457.   vertical-align: middle;
  458.   opacity: 0.7;
  459. }
  460.  
  461. #bottom-halfContainer #comments {
  462.   flex-wrap: wrap;
  463.   flex-direction: row;
  464. }
  465.  
  466. #bottom-halfContainer #comments #commentsList {
  467.   width: 100%;
  468.   margin: 0;
  469.   display: flex;
  470.   flex-direction: column;
  471.   padding: 0;
  472.   order: 1;
  473. }
  474.  
  475. #comments #commentsList .commentSection {
  476.   width: 100%;
  477.   margin: 0;
  478.   padding: 0px;
  479.   display: flex;
  480. }
  481.  
  482. #commentsList .commentSection .commentsThumbs {
  483.   width: 5%;
  484.   height: 100%;
  485.   padding: 0;
  486.   border-radius: 0;
  487.   border-top: 0;
  488.   border-left: 0;
  489.   display: flex;
  490.   align-items: center;
  491.   justify-content: center;
  492.   background: #111;
  493.   border-color: var(--blaqq);
  494. }
  495.  
  496. #commentsList .commentSection:last-child .commentsThumbs {
  497.   border-bottom: 0;
  498. }
  499.  
  500. .commentSection .commentsThumbs a {
  501.   width: 100%;
  502.   height: 100%;
  503.   display: flex;
  504.   justify-content: center;
  505. }
  506.  
  507. .commentsThumbs a img {
  508.   height: 100%;
  509.   width: auto;
  510.   opacity: 0.7;
  511. }
  512.  
  513. #commentsList .commentSection .commentsBubble {
  514.   border-radius: 0;
  515.   margin: 0 auto 0 0;
  516.   width: 65%;
  517.   padding: 0px;
  518.   justify-content: center;
  519.   align-items: center;
  520.   flex-direction: row;
  521.   flex-wrap: nowrap;
  522.   background: var(--sunglow);
  523. }
  524.  
  525. .commentSection .commentsBubble p {
  526.   width: 100%;
  527.   margin: 0 auto 0 0;
  528.   padding: 5px 10px;
  529.   font: 14px Zen Loop;
  530.   color: var(--xiketic);
  531.   font-weight: bold;
  532. }
  533.  
  534. .commentSection .commentsBubble .reportComment {
  535.   align-self: center;
  536.   margin: 0 0 0 auto;
  537.   padding: 5px;
  538.   font: 10px Verdana;
  539.   transition: all 0.1s linear;
  540. }
  541.  
  542. #commentsList .commentSection .commentsBubble:after {
  543.   content: close-quote;
  544.   position: relative;
  545.   margin-right: -10px;
  546.   border-left: 10px solid var(--sunglow);
  547.   border-top: 10px solid transparent;
  548.   border-bottom: 10px solid transparent;
  549. }
  550.  
  551. #commentsList .commentSection .commentInfo {
  552.   position: static;
  553.   display: flex;
  554.   width: 30%;
  555.   margin: 0 0 0 auto;
  556.   padding: 5px;
  557.   flex-direction: column;
  558.   justify-content: center;
  559.   align-items: center;
  560.   font-size: 0;
  561.   background: var(--xiketic);
  562.   color: var(--sunglow);
  563. }
  564.  
  565. .commentSection .commentInfo .infoUsername {
  566.   font: 16px Zen Loop;
  567.   font-weight: bold;
  568.   margin: 0 auto 5px;
  569.   text-decoration: none;
  570.   transition: all 0.1s linear;
  571.   color: var(--cream) !important;
  572. }
  573.  
  574. .commentSection .commentInfo .infoUsername:hover {
  575.   color: var(--sunglow) !important;
  576. }
  577.  
  578. .commentSection .commentInfo .infoDate {
  579.   font: 8px Verdana;
  580.   margin: 0 auto;
  581. }
  582.  
  583. #bottom-halfContainer #comments button {
  584.   display: inline-flex;
  585.   margin: auto 0 0 auto;
  586.   width: 30%;
  587.   border-radius: 0;
  588.   border-right: 0;
  589.   border-bottom: 0;
  590.   align-items: center;
  591.   justify-content: center;
  592.   order: 3;
  593.   font: 16px Zen Loop;
  594.   background: var(--cream);
  595.   color: var(--xiketic);
  596.   border-color: var(--cream);
  597.   font-weight: bold;
  598. }
  599.  
  600. #bottom-halfContainer #comments button:hover {
  601.   border-radius: 0;
  602.  
  603.   border-color: transparent;
  604.   background: transparent;
  605.   color: var(--sunglow);
  606. }
  607.  
  608. #bottom-halfContainer #comments #profile-pagination {
  609.   display: inline-flex;
  610.   width: 70%;
  611.   margin: 0 0 0 auto;
  612.   order: 2;
  613.   justify-content: space-evenly;
  614.   padding: 1.5px;
  615.   background: #111;
  616.   border-top: 1px solid var(--cream);
  617. }
  618.  
  619. #comments #profile-pagination .page-item {
  620.   padding: 5px;
  621.   height: 100%;
  622.   width: 100%;
  623.   margin: auto 2.5px 0;
  624.   display: inline-flex;
  625.   border-radius: 0;
  626.   background: var(--xiketic);
  627.   border: 0;
  628. }
  629.  
  630. #comments #profile-pagination .page-item.disabled {
  631.   opacity: 0.5;
  632.   border-color: #000;
  633.   background: #111;
  634. }
  635.  
  636. #comments #profile-pagination .page-item.active {
  637.   background: var(--xiketic);
  638.   box-shadow: inset 0 0 5px 1px rgba(255, 255, 255, 0.25);
  639. }
  640.  
  641. #profile-pagination .page-item .page-link {
  642.   display: inline-block;
  643.   font: 14px Zen Loop;
  644.   margin: 0;
  645.   height: 100%;
  646.   width: 100%;
  647.   text-align: center;
  648. }
  649.  
  650. #profile-pagination .page-item.disabled .page-link:hover {
  651.   cursor: not-allowed;
  652. }
  653.  
  654. #comments #profile-pagination .page-item.active .page-link {
  655.   color: var(--cream);
  656. }
  657.  
  658. #comments .noMessage {
  659.   font: 22px Zen Loop;
  660.   margin: 10px 0;
  661.   color: var(--cream);
  662. }
  663.  
  664. /*-----------------------------------------*/
  665.  
  666. /* Mobile Responsive Styling */
  667. /** Medium Screens - Full-width Profile Modules **/
  668. @media screen and (max-width: 1099px) {
  669.   html, body { width: 100vw; height: 100vh; }
  670.  
  671.   #profileWrapper #profileContainer #top-halfContainer,
  672.   #profileWrapper #profileContainer #bottom-halfContainer {
  673.  
  674.   }
  675.  
  676.   #profileWrapper #profileContainer #top-halfContainer {
  677.     flex-wrap: wrap;
  678.   }
  679.  
  680.   #profileContainer #top-halfContainer #leftHalf,
  681.   #profileContainer #top-halfContainer #rightHalf{
  682.     width: 85%;
  683.     margin: 0 auto;
  684.     padding: 0;
  685.     height: auto;
  686.   }
  687.  
  688.   #top-halfContainer #leftHalf img {
  689.     margin: 0 auto 50px;
  690.   }
  691.  
  692.   #top-halfContainer #leftHalf #media {
  693.     left: 10%;
  694.   }
  695.  
  696.   #profileContainer #bottom-halfContainer #avatarCollection,
  697.   #profileContainer #bottom-halfContainer #friendsList,
  698.   #profileContainer #bottom-halfContainer #comments {
  699.     margin: 0 auto 50px;
  700.     width: 85%;
  701.   }
  702. }
  703.  
  704.  
  705. /** Medium-small screens - fixed top navbar **/
  706. @media screen and (max-width: 850px) {
  707.   #profileWrapper #profileContainer #menuMobile,
  708.   #profileWrapper #profileContainer #menuMobile li,
  709.   #profileWrapper #profileContainer #menuMobile li a,
  710.   #commentsList .commentSection .commentsThumbs {
  711.     display: none !important;
  712.   }
  713.  
  714.   #profileWrapper #profileContainer #menu {
  715.     position: sticky;
  716.     width: 100%;
  717.     top: 0;
  718.     height: 100px;
  719.     border-bottom: 5px solid #111;
  720.   }
  721.  
  722.   #profileContainer #menu #menuNormal {
  723.     position: static;
  724.     display: inline-flex;
  725.     flex-direction: row;
  726.     margin: 0;
  727.     padding: 0;
  728.   }
  729.  
  730.   #menu #menuNormal li {
  731.     display: inline-flex;
  732.     margin: 0;
  733.     padding: 0;
  734.     border-right: 0;
  735.   }
  736.  
  737.   #menu #menuNormal li a {
  738.     border-right: 0;
  739.     border-bottom: 1px solid var(--sunglow);
  740.     background: var(--blaqq);
  741.   }
  742.  
  743.   #profileWrapper #profileContainer #top-halfContainer,
  744.   #profileWrapper #profileContainer #bottom-halfContainer {
  745.     width: 90%;
  746.     margin: 0 auto 25px;
  747.     padding: 0px;
  748.   }
  749.  
  750.   #profileContainer #top-halfContainer #leftHalf {
  751.     padding: 0;
  752.   }
  753.  
  754.   #profileContainer #top-halfContainer #rightHalf {
  755.     padding: 0;
  756.  
  757.   }
  758.  
  759.   #top-halfContainer #leftHalf #media {
  760.     min-width: 30px;
  761.     left: 0;
  762.   }
  763.  
  764.   #top-halfContainer #leftHalf img {
  765.     margin: 50px auto 15px !important;
  766.   }
  767.  
  768.   #top-halfContainer #rightHalf #user-cardContainer {
  769.     margin: 15px auto;
  770.     height: auto;
  771.   }
  772.  
  773.   #user-cardContainer #user-card #leftCard p {
  774.     height: auto;
  775.     margin: 25px auto;
  776.     font-size: 72px;
  777.     border-bottom: 1px solid var(--cream);
  778.     width: 75%;
  779.   }
  780.  
  781.   #user-cardContainer #user-card #leftCard ul {
  782.     width: 100%;
  783.     position: static;
  784.     background: transparent;
  785.     opacity: 1;
  786.   }
  787.  
  788.   #user-card #leftCard ul li {
  789.     width: 100%;
  790.     padding: 1px;
  791.     justify-content: center;
  792.   }
  793.  
  794.   #user-cardContainer #user-card #rightCard {
  795.     position: static;
  796.     width: 100%;
  797.     background: transparent;
  798.     opacity: 1;
  799.   }
  800.  
  801.   #user-card #rightCard #buttons {
  802.     width: 100%;
  803.     margin: 0;
  804.   }
  805.  
  806.   #user-card #rightCard #buttons li {
  807.     margin: 0 auto;
  808.     width: 15%;
  809.   }
  810.  
  811.   #top-halfContainer #rightHalf #aboutMe {
  812.     margin: 15px auto 5px;
  813.     height: auto;
  814.   }
  815.  
  816.   #profileContainer #bottom-halfContainer #avatarCollection,
  817.   #profileContainer #bottom-halfContainer #friendsList,
  818.   #profileContainer #bottom-halfContainer #comments {
  819.     margin: 0px auto 30px;
  820.   }
  821. }
  822.  
  823. /* End personalised code for Justice */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement