Element Outline

creates outline for all elements.

  1. /* ==UserStyle==
  2. @name Element Outline
  3. @description creates outline for all elements.
  4. @author NotYou
  5. @namespace -
  6. @version 0.2
  7. @license GPLv3
  8. @license-link https://www.gnu.org/licenses/gpl-3.0.txt
  9. ==/UserStyle== */
  10.  
  11. /* MAIN */
  12.  
  13. nav {
  14. outline: 1px dashed rgb(238, 255, 0) !important
  15. }
  16.  
  17. div {
  18. outline: 1px dashed rgb(255, 0, 0) !important
  19. }
  20.  
  21. footer,header {
  22. outline: 1px dashed rgb(0, 0, 0) !important
  23. }
  24.  
  25. img,svg,use {
  26. outline: 1px dashed rgb(24, 136, 162) !important
  27. }
  28.  
  29. h1 {
  30. outline: 1px dashed rgb(149, 89, 0) !important
  31. }
  32.  
  33. h2 {
  34. outline: 1px dashed rgb(179, 107, 0) !important
  35. }
  36.  
  37. h3 {
  38. outline: 1px dashed rgb(198, 118, 0) !important
  39. }
  40.  
  41. h4 {
  42. outline: 1px dashed rgb(223, 133, 0) !important
  43. }
  44.  
  45. h5 {
  46. outline: 1px dashed rgb(236, 141, 0) !important
  47. }
  48.  
  49. h6 {
  50. outline: 1px dashed rgb(255, 152, 0) !important
  51. }
  52.  
  53. span {
  54. outline: 1px dashed rgb(5, 189, 5) !important
  55. }
  56.  
  57. p {
  58. outline: 1px dashed rgb(161, 0, 198) !important
  59. }
  60.  
  61. i,b,u,s,q {
  62. outline: 1px dashed rgb(121, 0, 151) !important
  63. }
  64.  
  65. a {
  66. outline: 1px dashed rgb(0, 135, 198) !important
  67. }
  68.  
  69. input,output,label,button,form,textarea,fieldset,select,option,optgroup,summary,canvas {
  70. outline: 1px dashed rgb(168, 249, 0) !important
  71. }
  72.  
  73. video, audio {
  74. outline: 1px dashed rgb(0, 255, 200) !important
  75. }
  76.  
  77. code {
  78. outline: 1px dashed rgb(0, 0, 0) !important
  79. }
  80.  
  81. li,ul,table,tbody,tr,td,legend {
  82. outline: 1px dashed rgb(0, 38, 230) !important
  83. }
  84.  
  85. ol,table,tbody {
  86. outline: 1px dashed rgb(10, 0, 151) !important
  87. }
  88.  
  89. /* OTHER */
  90.  
  91. figure {
  92. outline: 1px dashed rgb(0, 255, 231) !important
  93. }
  94.  
  95. figcaption {
  96. outline: 1px dashed rgb(255, 26, 230) !important
  97. }
  98.  
  99. ::before,::after,::marker {
  100. outline: 1px dashed rgb(255, 0, 131) !important
  101. }
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.