Advertisement
rccharles

Tidy up December asc

Jan 1st, 2019
556
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.07 KB | None | 0 0
  1. /* Adjust December 2018 ASC
  2.  
  3.    Beautify many types of Code.
  4.    https://www.freeformatter.com/css-beautifier.html
  5.  
  6.    parchment #ffffcc
  7.  
  8.    #F2F2F2              light grey, most of the window ¬
  9.                         was this color two releases ago.
  10.  
  11.    silly question at top. Hint on how to get rid of when not set in user's profile
  12.    discussions.apple.com##.shown.persist-question
  13.  
  14.    Wilmut's version dec 20,2018:
  15.    http://wilmut.uk/ASC_CSS.txt¬
  16.  
  17.    General discussion
  18.    https://discussions.apple.com/thread/250028636?page=2
  19. */
  20.  
  21. /* ---------------------------------------------------------------------*/
  22.  
  23. /* adjust background colors
  24.    https://www.quackit.com/css/css_color_codes.cfm  scroll down to "CSS Color Names"
  25. */
  26. body,
  27. article,
  28. footer {
  29.     background: wheat !important;
  30. }
  31.  
  32. /* Dim these originally white area. Make coler a lighter than Wheat above, so
  33.    there is some distinctin from other areas on the screen */
  34. section.content-post.top-answer,
  35. /* Correct reply just after question. */
  36. div.action-bar a.button.button-white,  /* "VIew answer in context" button on correct
  37.                                           reply just after question */
  38. input#create-post-title-input,
  39. /* Title for new post */
  40. div.ql-editor,
  41. /* editor input area */
  42. div.toolbar div.row,
  43. /* icons at the bottom of the input editor */
  44. button.button.button-white,
  45. /* Bottom of post button row */
  46. input#askaquestion    /* Question at top of list of threads */
  47. {
  48.     background: bisque !important;
  49. }
  50.  
  51. blockquote {
  52.     /* light grey was white, most of the window was this color anyway. */
  53.     /*  background: #F2F2F2 !important;  /* very light greay */
  54.     /*  background: #a7aaae !important;  /* light grey */
  55.     background: tan !important;
  56. }
  57.  
  58. /* reply button */
  59. button.button.button-black {
  60.     background: #4a4646 !important;     /* Back to the color it was */
  61. }
  62.  
  63. /* Let's eliminate the all apple.com header. The black band at the top of the page. */
  64. nav#ac-globalnav,
  65. div#ac-gn-placeholder {
  66.     display: none !important;
  67. }
  68.  
  69. /* Adjust My Subscriptions Page */
  70.  
  71. /* Which Community */
  72. div.filters-and-content.allow-overflow td.community-name a {
  73.     font-size: 14px !important;   /* smaller to conserve space */
  74.     font-weight: normal !important;
  75. }
  76.  
  77. /* Thread Title */
  78. div.filters-and-content.allow-overflow a.topic-title-link {
  79.     font-size: 20px !important; /* Larger to stand out. Not perfect. Long
  80.                                    titles will be clipped.  Underline issue. */
  81.     color: black !important;
  82.        /* font-weight: normal !important; /* */
  83. }
  84.  
  85. /* Lose some "whitespace" in my subscriptions */
  86. .topics-component {
  87.     border-spacing: 0 10px !important;
  88. }
  89.  
  90. /* This gives a larger editor window [twice the size]: */
  91. .ql-container {
  92.     height: 400px !important;
  93. }
  94.  
  95. /* Declarate links */
  96. a:link {
  97.     text-decoration: none;
  98.     color: #0047ff;
  99. }
  100. a:visited {
  101.     text-decoration: none;
  102.     color: purple;
  103. }
  104. a:hover {
  105.     text-decoration: underline;
  106.     color: red;
  107. }
  108. a:active {
  109.     text-decoration: underline;
  110.     color: blue;
  111. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement