Advertisement
Guest User

Untitled

a guest
Mar 21st, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.67 KB | None | 0 0
  1. /* Awfully Dark */
  2. @import "https://pgsil.github.io/awfullydark2/styles.css";
  3.  
  4. /* Hover Ratings */
  5. @import "https://tamschi.github.io/Newpunch-Hover-Ratings/style.css";
  6.  
  7. /* Blink */
  8. @import url("https://git.io/vxqwa");
  9.  
  10. /* OLD RATINGS */
  11. @import url("https://git.io/vxOHd");
  12.  
  13. /* Quote Fixes */
  14. @import url("https://bryanhaley.github.io/FPCUB/no-grad-quote.css");
  15. @import url("https://bryanhaley.github.io/FPCUB/full-height-quote.css");
  16.  
  17. /* No Bullshit Sidebar */
  18. .drawer {
  19. display: none;
  20. }
  21.  
  22. /* Banned Avatar */
  23. div[class="username user-banned"] + div[class="postavatar"] {
  24. margin: auto;
  25. background: url(http://horobox.co.uk/u/reag/avatar_banned.png);
  26. width: 100px;
  27. height: 50px;
  28. }
  29. div[class="username user-banned"] + div[class="postavatar"] img {
  30. display: none;
  31. }
  32.  
  33. /* Fix alert dropdown lack of padding */
  34. .alert-dropdown div:not(.alert-item) {padding: 0 .5rem .5rem;}
  35.  
  36. /* Remove unnecessary padding from posts */
  37. .postbody {padding: 0!important;}
  38.  
  39. /* Fix padding and remove yellow border from the New Post text field */
  40. .ql-container.ql-snow {border: none; border-bottom: 1px solid #ddd;}
  41. .ql-container.ql-snow .ql-editor[contenteditable="true"] {padding: 15px!important;}
  42.  
  43. /* Shrinks ratings to 16px and spaces them out more evenly */
  44. .votebutton img, .right .votebuttons .votebutton img {width: 16px; height: 16px;}
  45. .postblock .postfoot .right .votebuttons .votebutton {margin-right: 5px;}
  46.  
  47. /* Add subtle round borders to quoted posts, remove unnecessary top-margin, brighten quote border/header BG, add text-shadow to quote head */
  48. .ql-container.ql-snow .ql-editor postquote {border-radius: 2px; border 1px solid #3598e6;}
  49. .ql-container.ql-snow .ql-editor postquote:first-child {margin: 0 0 1rem 0;}
  50. .ql-container.ql-snow .ql-editor postquote .head {background-color: #3598e6; text-shadow: 1px 1px 0px #206296;}
  51.  
  52. /* Add subtle round borders to code segments */
  53. .ql-container.ql-snow .ql-editor pre.ql-syntax, .ql-container.ql-snow .ql-editor postquote {border-radius: 2px;}
  54.  
  55. /* Brings back old spoiler style */
  56. spoiler {filter: none; opacity: 1; transition: none; background-color: #333; color: #333;}
  57. spoiler:hover {color: white;}
  58.  
  59. /* Shrinks and fixes alignment on the "Read X minutes ago" marker */
  60. .lastread {padding: 0.25rem;}
  61. .lastread :first-child {margin-right: 2px;}
  62. .lastread :last-child {margin-top: 1px;}
  63.  
  64. /* Add rounded corners to the site header */
  65. #header {border-radius: 4px 4px 0 0;}
  66.  
  67. /* Fix the BBS-style quoting */
  68. .ql-container.ql-snow .ql-editor blockquote {border-left: 2px solid #3598e6; background-color: #d5e5f2; line-height: 1.5em;}
  69. .ql-container.ql-snow .ql-editor blockquote:before {content: ""; padding-right: 0;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement