Advertisement
Guest User

Fixes 3

a guest
Mar 8th, 2020
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.65 KB | None | 0 0
  1. /*ALL PAGES*/
  2. /* OPTIONAL: Style changes to expandable boxes. */
  3. .styled-dtext div.expandable {
  4.     box-shadow: unset;
  5.     background: #ffffff20;
  6.     border-bottom: 2px solid #ffffff60;
  7. }
  8. /* User rating in profile's page (and everywhere) with bold fonts like before */
  9. .user-feedback-positive {
  10.     font-weight: bold;
  11. }
  12. .user-feedback-neutral {
  13.     font-weight: bold;
  14. }
  15. .user-feedback-negative {
  16.     font-weight: bold;
  17. }
  18. /* ACCOUNT PAGE */
  19. /* Shadow below user-name in profile's page, because why not */
  20. body.c-users.a-show div.profile-stats > h1 > a {
  21.     text-shadow: #000 0px 5px 3px
  22. }
  23. /* Padding for top part (table) of profile's page */
  24. body.c-users.a-show div#c-users div#a-show div.profile-container:first-of-type {
  25.     padding: 0 0 1em;
  26. }
  27. /* Title of 'Favorites' and 'Uploads' boxes with a 'button' like format + alignments */
  28. body.c-users.a-show div#c-users div#a-show div.box h2, div#c-users div#a-show div.box h3 {
  29.     border-bottom: 4px solid #ffffff60;
  30.     padding: 0 0 2px;
  31.     margin: 0 0 5px;
  32.     text-align: center;
  33.     background: #294a81aa;
  34.     border-top-left-radius: 3px;
  35.     border-top-right-radius: 3px;
  36. }
  37. /* Removes bottom spaces and adds some between aforementioned boxes */
  38. body.c-users.a-show div#c-users div#a-show div.box {
  39.     margin-bottom: unset;
  40.     margin: 0 5px;
  41. }
  42. /*  'About me' and 'Artist info' boxes adjustments (border, no background, spaces)*/
  43. body.c-users.a-show .box-section {
  44.     box-shadow: unset;
  45.     margin-bottom: unset;
  46.     background-color: unset;
  47.     border: 4px solid #284a81;
  48. }
  49. /* Padding for aforementioned boxes to not clutter between them and out */
  50. body.c-users.a-show div#c-users div#a-show .about-section .about-piece {
  51.     margin: 0 0 auto 10px;
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement