Advertisement
Guest User

Untitled

a guest
Oct 24th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.01 KB | None | 0 0
  1. /* I just want to preface this by saying that I love the redesign and I don't want to come off as some
  2. condescending backseat designer. That's not my intention.
  3.  
  4. I just like making adjustments to CSS of sites I frequent with an extension on Chrome
  5. called Stylebot and though why not post this on the forums along with some notes. */
  6.  
  7. /* I felt like the base font size was a bit too big and I like to
  8. use 16px */
  9. html {
  10.     font-size: 16px;
  11. }
  12.  
  13. /* I found the arrows a bit too bulky and that they didn't have enough
  14. breathing room on their left side */
  15. .masthead-nav-item-icon {
  16.     font-size: 1rem;
  17.     margin-left: .25rem;
  18. }
  19.  
  20. /* Adjusted the sizes in the next three rules a bit to fit better with the changes I
  21. made to the base font size. I also found the border kind of out of place */
  22. .live-pulse.small {
  23.     width: 1rem;
  24.     height: 1rem;
  25.     margin: 0 .75rem 0px 0;
  26. }
  27.  
  28. .masthead-avatar {
  29.     border: none;
  30.     height: 2rem;
  31.     width: 2rem;
  32. }
  33.  
  34. .masthead-toggle .symbol {
  35.     font-size: 1.25rem;
  36. }
  37.  
  38. /* I found the background color a bit too distracting. Though not sure if it sticks
  39. out enough without it */
  40. .carousel-strip__control button {
  41.     background-color: inherit;
  42. }
  43.  
  44. /* In the next three rules I adjusted pure gray scale colors to have a little blue hue
  45. as I noticed had been done to the background color of the site. I like that, it gives
  46. the colors a bit more life */
  47. .bg-25 {
  48.     background-color: #3c3f42;
  49. }
  50.  
  51. .js-masthead-subnav {
  52.     background: #242628;
  53. }
  54.  
  55. .masthead-subnav-items {
  56.     border-color: #161819;
  57. }
  58.  
  59. /* I found the titles of the videos and in "Latest form the community" to be too big */
  60. @media  (min-width: 1280px) {
  61.   h5, h6, p, .text-medium {    
  62.     font-size: 16px;
  63.   }
  64. }
  65.  
  66. /* I found the borders kind of distracting and unnecessary */
  67. .masthead-subnav-item {
  68.     border: none;
  69. }
  70.  
  71. /* Added margin with same width as arrow buttons so that the titles line up with the
  72. first item in the carousel */
  73. .pod--carousel-strip h2 {
  74.     margin-left: 36px;
  75. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement