Advertisement
Guest User

green.css

a guest
Feb 25th, 2020
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. /* Green CSS */
  2.  
  3. body {
  4. color: #e1e1e1 !important;
  5. font-family: 'Roboto Mono',monospace !important;
  6. font-size: 16px !important;
  7. }
  8.  
  9.  
  10. a {
  11. color: #78e2a0 !important;
  12. text-decoration: none !important;
  13. transition: 0s !important;
  14. }
  15.  
  16. header, footer {
  17. background-color: #1f222a !important;
  18. }
  19.  
  20. footer {
  21. border-top: #1c1e24 2px dashed !important;
  22. width: 50% !important;
  23. margin: 0 auto !important;
  24. }
  25.  
  26. footer .ending-message {
  27. border-top: #78e2a0 1px dotted !important;
  28. padding: 0 40px 0 40px !important;
  29. color: #999 !important;
  30. font-size: 10px !important;
  31. }
  32.  
  33. main article {
  34. max-width: 800px !important;
  35. margin-left: auto !important;
  36. margin-right: auto !important;
  37. }
  38.  
  39. main article .article__text code {
  40. padding: .2em 1em !important;
  41. color: #FFF !important;
  42. font-family: 'Roboto Mono',monospace !important;
  43. background: #1c1e24 !important;
  44. border-radius: 3px !important;
  45. padding: 2px 2px !important;
  46. }
  47.  
  48. main header {
  49. padding: 40px !important;
  50. border-top: none !important;
  51. border-bottom: #78e2a0 2px dotted !important;
  52. text-align: center !important;
  53. }
  54.  
  55. main header {
  56. color: #FFF !important;
  57. }
  58.  
  59. main header p {
  60. font-weight: none !important;
  61. font-size: 20px !important;
  62. text-transform: uppercase !important;
  63. text-align: right !important;
  64. text-decoration: none !important;
  65. padding-right: 20% !important;
  66. color: white !important;
  67. }
  68.  
  69. .pagination ul li .pagination__page--current {
  70. background-color: #1c1e24 !important;
  71. color: #fff !important;
  72. }
  73.  
  74. hr {
  75. color: #1f222a00 !important;
  76. background-color: #eee !important;
  77. height: 1px !important;
  78. border: none !important;
  79. width: 45% !important;
  80. border-bottom: 2px #78e2a0 dotted !important;
  81. }
  82.  
  83. header .site-name {
  84. font-family: 'Roboto Mono',monospace !important;
  85. font-size: 28px !important;
  86. font-weight: 700 !important;
  87. background-color: #1C1E24 !important;
  88. }
  89.  
  90. .highlight pre {
  91. background: #1c1e24 !important;
  92. color: #f8f8f2 !important;
  93. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement