Advertisement
Guest User

Stylus Template WD - Darklily's Standard

a guest
Nov 24th, 2023
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.98 KB | None | 0 0
  1. /* This is a note! Notes can be left like this and do not interfere with the code itself. Please leave this note as credit, but all others feel free to remove or add on to if you need to and are comfortable with that ^^
  2.  
  3. Original Template by Darklily #1058 */
  4. /* This template will guide you through making a Stylus layout with my own personal preference for color schemes, at least in terms of which colors go where. The intent of this is to make an easy plug and go template without too much technical stuff. As a result, this template is quite condensed, often with multiple elements being grouped together to have the same properties.
  5.  
  6. I used the colors from my Dark Blues layout mainly, although some colors were changed so that they stand out more.
  7.  
  8. For further advice on making a color palette and even how to make your own background image, go to: https://www.wolvden.com/chatter/topic/15186
  9. */
  10. /* Basics and background image are first!*/
  11. body {
  12. background: url('https://i.imgur.com/Kmcv07A.jpg')/* Your image link goes here instead of this one */ !important;
  13. background-attachment: fixed!important;
  14. background-size: 100%!important;
  15. background-color: #000!important;
  16. /*I always include a backup color for the background just in case the image isn't loading or loads in slowly. */
  17. color: gray!important;
  18. /* Main color of text for the page, but not nessarily the whole page. Pick a color that shows up well on all background colors you are using just in case needed. */
  19. }
  20.  
  21. /* Links. Pick a color that will show up well on all your background colors.*/
  22. a:link,
  23. a:visited {
  24. color: gray!important;
  25. }
  26. a:hover,
  27. a:active {
  28. color: white!important;
  29. transition: all ease 2s;
  30. /* Slight transition to make the colors fade into each other. Can be removed if you prefer. */
  31. }
  32.  
  33. /* Header text color. As with the text and link colors above, be sure to pick a color that works with all colors you have chosen. */
  34. h1,
  35. h2,
  36. h3 {
  37. color: gray!important;
  38. }
  39.  
  40. /* The color of bookmark when not page is not bookmarked */
  41. .text-danger {
  42. color: #1a1f60!important
  43. }
  44.  
  45.  
  46. /* Right, now that we have the true basics done, we can get on to the colors themselves. I recommend playing around with which colors go where. I have simply numbered the element groups, with no particular order them. */
  47. /* Element group #1. Includes the main box of the site's layout. */
  48. #main,
  49. .main,
  50. .bg-warning {
  51. background: #202133!important;
  52. }
  53.  
  54. /* Element group #2 */
  55. #sidebar,
  56. .index .sidebar,
  57. .breadcrumb-nav,
  58. th.top,
  59. #sidebar .card-body,
  60. #header .navbar-main,
  61. #footer {
  62. background: #0f0f10!important;
  63. color: gray!important;
  64. }
  65.  
  66. #sidebar .card {border-bottom:none!important;}
  67.  
  68. /* Element group #3. Since weirdly (I was surprised by this actually) this is only used for one thing, it's the main color for the forums and other tables across the site. */
  69. .table td {
  70. background: #252748!important;
  71. color: gray!important;
  72. }
  73.  
  74. /* Element group #4. Again, like the above, it's used once. This is the headers for most tables, but not all. */
  75. th {
  76. background: #0a0b14!important;
  77. color: gray!important;
  78. }
  79.  
  80. /* Emement Group #5 */
  81. td.bottom,
  82. div.left,
  83. td.b,
  84. .table .subheader,
  85. .pup {
  86. background: #565d72!important;
  87. color: black!important;
  88. }
  89.  
  90. /* Element Group #6 */
  91. .card,
  92. .card-body,
  93. .hoard .item {
  94. color: gray!important;
  95. background: #333556!important;
  96. border-bottom:none!important;
  97. }
  98.  
  99. .hoard .item {
  100. border: none!important; }
  101.  
  102. #sidebar .card {background:none!important;}
  103.  
  104.  
  105. /* Element Group #7. This will almost largely be the buttons and parts of the chatbox, but also some other elements. */
  106. .btn,
  107. .btn-warning.disabled,
  108. .btn-warning:disabled,
  109. .btn-info,
  110. .s-chat-message:nth-child(odd),
  111. #fra_chatContainer #txtChatInput,
  112. .form-control,
  113. .note-editor.note-airframe .note-editing-area .note-editable,
  114. .note-editor.note-frame .note-editing-area .note-editable,
  115. #header .navbar-status {
  116. background: #1c1b1e!important;
  117. color: white!important;
  118. }
  119. /* This goes with the above, just to add some effects to the buttons; feel free to change the border color */
  120. .btn,
  121. .btn-warning:disabled,
  122. .btn-info,
  123. #fra_chatContainer #txtChatInput,
  124. .form-control,
  125. .note-editor.note-airframe .note-editing-area .note-editable,
  126. .note-editor.note-frame .note-editing-area .note-editable {
  127. border: 1px solid black!important;
  128. /*Border color around the buttons */
  129. transition: all ease 1s;
  130. }
  131.  
  132. #header .navbar-status {
  133. border: none!important;
  134. }
  135.  
  136. #fra_chatContainer #txtChatInput {
  137. border-radius: 15px;
  138. /* This adds a rounded effect to the box which you type chat messages in. Just rounds the corners off. */
  139. }
  140.  
  141. .form-control {
  142. transition: all ease 1s;
  143. border: none!important;
  144. /* Again, this just adds some effects; this is the box in which you type messages pretty much everywhere but the chatbox, i.e. your den description, forums, PMs, etc. */
  145. }
  146.  
  147. /* Element Group #7.5; I'm adding this here kind of to go with the above about the message boxes. This is the color of the box when you have clicked on it and are typing in it. */
  148. .form-control:focus {
  149. background: #000!important;
  150. color: gray!important;
  151. transition: all ease 1s;
  152. border: none!important;
  153. }
  154.  
  155. /* Element Group #8. This is going to be for hovering over buttons. */
  156. .btn:hover,
  157. .btn-info:hover {
  158. background: #4e4663!important;
  159. color: black!important;
  160. border: 1px solid black;
  161. transition: all ease 1s;
  162. }
  163.  
  164. /*Element Group #9. This is for the other color for the chatbox messages. */
  165. .s-chat-message:nth-child(even) {
  166. background: #1e1a40!important;
  167. color: gray!important;
  168. }
  169.  
  170. /* Element Group #10. This is which chat is selected in the drop down box for the chatbox. */
  171. .s-chat-sidebar #label_currentChannel,
  172. #fra_chatContainer .channelMenu .channelSwitcher.active {
  173. background: #464663!important;
  174. color: black!important;
  175. border: 1px solid black;
  176. transition: all ease 1s;
  177. }
  178.  
  179. /* Element Group 10.5. This is the font color for that drop down box.*/
  180. #fra_chatContainer .channelMenu .channelSwitcher {
  181. color: gray!important;
  182. }
  183.  
  184. /* And this is the background color when you hover over the options. */
  185. #fra_chatContainer .channelMenu .channelSwitcher:hover {
  186. background: #000!important;
  187. color: #fff!important;
  188. }
  189.  
  190. /* Element Group #11. These are the progress bars. I'll label each of them here so that it's obvious which one is which, since their names doesn't entirely make sense, at least to me. It is possible that they are used elsewhere too, like for event progress bars. */
  191. .progress-bar {
  192. /* Some event bars; can't garentee this works on all. You may want to remove if you prefer the normal gradient, or look up how to do gradients (link will be in guide post!). */
  193. background: #767291!important;
  194. }
  195. .progress {
  196. background: #622525!important;
  197. }
  198. .bg-warning {
  199. /* Energy */
  200. background-color: #8f94f1!important;
  201. }
  202. .bg-danger {
  203. /* Hunger */
  204. background-color: #0c2282!important;
  205. }
  206. .bg-info {
  207. /* Hunger */
  208. background-color: #324b75!important;
  209. }
  210. .bg-success {
  211. /* HP */
  212. background-color: #04011d!important;
  213. }
  214. .bg-primary {
  215. /* EXP */
  216. background-color: #0f0c21!important;
  217. }
  218.  
  219. /*Element Group #12 */
  220. .hoard .item-foot,
  221. .hoard .item-head,
  222. .page-item.active .page-link,
  223. .bg-dark {
  224. background: #0f0c21!important;
  225. color: gray!important;
  226. }
  227. .page-item.active .page-link {
  228. border-color: black!important;
  229. /* border color for number of the page you are on in your hoard or in a forum post.*/
  230. }
  231.  
  232. /* Element Group #13; this is the alert messages. I actually suggest making them different colors. */
  233. .alert-info, .alert-success {
  234. background: #041b22!important;
  235. color: gray!important;
  236. border: 1px gray solid!important;
  237. border-radius: 10px;
  238. }
  239. .alert-danger {
  240. background: #1e1b3f!important;
  241. color: gray!important;
  242. border: 1px gray solid!important;
  243. border-radius: 10px;
  244. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement