Advertisement
Guest User

Phuks Dark Template

a guest
Jan 6th, 2017
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.57 KB | None | 0 0
  1. /*Body Background, Sidebar, Post Container, Header Colours*/
  2. body.dark {
  3. background: #101010;
  4. color: #aaa;
  5. }
  6. body.dark .side {
  7. background-color: #1b1b1b;
  8. border: 1px solid #333133;
  9. }
  10. body.dark header {
  11. background: #1b1b1b;
  12. border-bottom: solid 1px #333133;
  13. }
  14. body.dark .center {
  15. background: #1b1b1b;
  16. border: solid 1px #333133;
  17. }
  18. /*Post Dividers, Post Titles, Sidebar Links*/
  19. body.dark .post+.post {
  20. border-top: 1px solid #333133;
  21. }
  22. body.dark .post .title {
  23. background: #1b1b1b;
  24. color: #fd5c00;
  25. font-size: 18px;
  26. font: bold;
  27. }
  28. body.dark .post .title:visited {
  29. background: #1b1b1b;
  30. color: #FFFFFF;
  31. font-size: 18px;
  32. font: bold;
  33. }
  34. body.dark .post .title:hover {
  35. background: #1b1b1b;
  36. color: #2883b9;
  37. font-size: 18px;
  38. font: bold;
  39. }
  40. a:visited {
  41. color: #FFFFFF;
  42. }
  43. body.dark i.fa.fa-square.fa-stack-2x {
  44. color: black;
  45. }
  46. /*Big Sidebar Buttons, Small Buttons and Post Buttons*/
  47. body.dark .btn {
  48. border: solid #333133 1px;
  49. margin: 1px;
  50. background: #101010;
  51. color: #fd5c00;
  52. }
  53. body.dark .btn:hover {
  54. border: solid #333133 1px;
  55. margin: 1px;
  56. background: #101010;
  57. color: #ffffff;
  58. }
  59. .btn.btn-orange:visited {
  60. color: #fd5c00;
  61. }
  62. body.dark .btn.small {
  63. background-color: #101010;
  64. color: white;
  65. border: solid #333133 1px;
  66. }
  67. body.dark .btn.small:hover {
  68. background-color: #101010;
  69. color: #fd5c00;
  70. border: solid #333133 1px;
  71. }
  72. body.dark .post .btn.small {
  73. background-color: #101010;
  74. color: white;
  75. border: solid #333133 1px;
  76. }
  77. body.dark .post .btn.small:hover {
  78. background-color: #101010;
  79. color: #fd5c00;
  80. border: solid #333133 1px;
  81. }
  82. body.dark .side .lightbtn i:hover {
  83. color: #fd5c00;
  84. }
  85. /*Footer, Hr, Header Buttons*/
  86. body.dark footer {
  87. background: #101010;
  88. }
  89. body.dark hr {
  90. background: #333133;
  91. }
  92. body.dark nav ul li a {
  93. background: #101010;
  94. color: white;
  95. border: solid #333133 1px;
  96. }
  97. body.dark nav ul li a:hover {
  98. background: #101010;
  99. color: white;
  100. border: solid #333133 1px;
  101. }
  102. /*Text Post Header, Pop Up Windows, Text Input Boxes*/
  103. body.dark .text-post .head {
  104. background-color: #000;
  105. color: #151515;
  106. border-bottom: solid #333133 1px;
  107. }
  108. body.dark .white-popup-block {
  109. background-color: #101010;
  110. color: white;
  111. border: solid #333133 1px;
  112. }
  113. body.dark .white-popup-block input {
  114. background-color: #0c0c0c;
  115. color: white;
  116. }
  117. body.dark h1 {
  118. color: #fd5c00;
  119. }
  120. body.dark textarea {
  121. background: #0c0c0c;
  122. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement