Advertisement
Guest User

njit.edu Style

a guest
Jun 20th, 2018
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.23 KB | None | 0 0
  1. :root {
  2.     --dark-gray: rgb(50, 50, 50);
  3.     --medium-gray: #4b4b4b;
  4.     --light-gray: gray;
  5.     --inactive-red: rgb(200, 0, 0);
  6.     --dark-red: rgb(160, 0, 0);
  7.     --slight-red: rgb(255, 190, 190);
  8. }
  9.  
  10. header.main-header, .top-header, .main-container, .content, .container-full-width {
  11.     background-color: var(--dark-gray) !important;
  12. }
  13.  
  14. .stat, .EmbeddedTweet-tweet {
  15.     background-color: var(--medium-gray) !important;
  16. }
  17.  
  18. .menu > li > a {
  19.     color: var(--inactive-red) !important;
  20. }
  21.  
  22. .menu > li > a:active, .menu > li > a:hover {
  23.     color: red !important;
  24. }
  25.  
  26. h1, .description, .title, .item-title {
  27.     color: red !important;
  28. }
  29.  
  30. .description > a {
  31.     color: var(--dark-red) !important;
  32. }
  33.  
  34. .description > a:active, .description > a:hover {
  35.     color: var(--inactive-red) !important;
  36. }
  37.  
  38. .button--content:hover, .button--navigation:hover {
  39.     color: var(--inactive-red) !important;
  40.     border-color: var(--inactive-red) !important;
  41. }
  42.  
  43. .button--content.active, .text-only-callout, .cta-block, .date-block, .button.primary:hover, footer, .button.active, .mega-nav-container  {
  44.      background-image: linear-gradient(292deg, red, var(--inactive-red), var(--dark-red)) !important;
  45. }
  46.  
  47. .button.primary {
  48.     border-image-source: linear-gradient(292deg, red, var(--inactive-red), var(--dark-red)) !important;
  49. }
  50.  
  51. .button--content.active:hover, .button--navigation.active:hover {
  52.     color: var(--slight-red) !important;
  53. }
  54.  
  55. .button--navigation, .caption, .EmbeddedTweet-tweet {
  56.     color: white !important;
  57. }
  58.  
  59. #edit-keyword, .majors-navigation-container {
  60.     background-color: var(--medium-gray) !important;
  61.     color: white !important;
  62.     border: none !important;
  63. }
  64.  
  65. .EmbeddedTweet-tweet {
  66.     border: none !important;
  67. }
  68.  
  69. .social-icon.twitter {
  70.     color: #6f6f6f !important;
  71.     border-bottom-color: white !important;
  72. }
  73.  
  74. .social-icon.twitter:active, .social-icon.twitter:hover {
  75.     color: #00aced !important;
  76.     border-bottom-color: #00aced !important;
  77. }
  78.  
  79. .social-icon.facebook {
  80.     color: #6f6f6f !important;
  81.     border-bottom-color: white !important;
  82. }
  83.  
  84. .social-icon.facebook:active, .social-icon.facebook:hover {
  85.     color: #3b5998 !important;
  86.     border-bottom-color: #3b5998 !important;
  87. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement