Advertisement
Guest User

Fixes 1

a guest
Mar 7th, 2020
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.28 KB | None | 0 0
  1. /* ALL PAGES */
  2. /* pages left-aligned with top menu and with round borders */
  3. div#page {
  4.     margin: 0 0.5rem;
  5.     border-radius: 6px;
  6. }
  7.  
  8. /* top menu with a bit less padding between options and round borders to selected item */
  9. header#top menu {
  10.     padding: 6px;
  11. }
  12. header#top menu.main li.current a {
  13.     border-top-left-radius: 6px;
  14.     border-top-right-radius: 6px;
  15. }
  16.  
  17. /* lowers the space between text lines by 0.03em (WARNING: affects EVERYTHING text related) */
  18. a, abbr, acronym, address, blockquote, caption, cite, code, dd, del, dfn, dl, dt, em, fieldset, form, h1, h2, h3, h4, h5, h6, img, label, legend, li, ol, p, pre, q, s, samp, small, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, ul, var {
  19.     line-height: 1.22em;
  20. }
  21.  
  22. /* scores and rating are bold everywhere now, except if they don't have the class associated (like 'rating' in posts and comments pages) */
  23. .score-negative {
  24.     font-weight: bold;
  25. }
  26. .score-neutral {
  27.     font-weight: bold;
  28. }
  29. .score-positive {
  30.     font-weight: bold;
  31. }
  32. .post-score-rating {
  33.     font-weight: bold;
  34. }
  35.  
  36. /* SEARCH PAGE */
  37. /* hide "posts" header in search page (useless?) */
  38. div#c-posts div#a-index menu#post-sections {
  39.     display: none;
  40. }
  41.  
  42. /* POSTS/IMAGES PAGE */
  43. /* lowers the font a bit in left menu of posts to follow up the tag section font's size from this 'mega fix package'*/
  44. #post-information {
  45.     font-size: 90%;
  46. }
  47. #post-options {
  48.     font-size: 90%;
  49. }
  50. #post-history {
  51.     font-size: 90%;
  52. }
  53. #post-related-images {
  54.     font-size: 90%;
  55. }
  56.  
  57. /* ACCOUNT PAGE */
  58. /*Home: added padding to "Welcome, <you>" because some unicode languages overlaps with the text below it*/
  59. body.c-users.a-home div#page h2 {
  60.     padding: 0 0 10px;
  61. }
  62.  
  63. /* My Profile > Comments : removes your avatar, align posts and extends comment boxes */
  64. body.c-comments.a-index div#c-comments div#a-index div.post, div#c-comments div#a-show div.post {
  65.     margin-bottom: 1em;
  66. }
  67. body.c-comments.a-index div#c-comments div#a-index div.preview, div#c-comments div#a-show div.preview {
  68.     text-align: center;
  69.     width: 200px;
  70.     display: table;
  71.     margin-right: unset;
  72. }
  73. body.c-comments.a-index div.comments-for-post div.list-of-comments article.comment {
  74.     width: 100%;
  75. }
  76. body.c-comments.a-index div.comments-for-post div.list-of-comments article.comment div.author {
  77.     display: none;
  78. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement