Advertisement
lacqueried

Untitled

May 17th, 2025 (edited)
560
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.54 KB | None | 0 0
  1. li.blurb {
  2.   border: 1px solid;
  3. border-color: BORDER HEX COLOR;
  4. }
  5. li.relationships a.tag {
  6.   background: BG HEX COLOR;
  7.   color: #ffffff; delete this line if you're using a light color or the ao3 defaults
  8. }
  9.  
  10. li.blurb .tags {
  11.  max-height: 10em;
  12.  overflow-y: auto;
  13. }
  14.  
  15. li {
  16.  margin: 0px;
  17. }
  18.  
  19. .tags li {
  20.  padding: 0 .4em .4em 0;
  21. }
  22.  
  23. .blurb .relationships {
  24.  background: none;
  25.  font-style: italic;
  26. }
  27.  
  28. ul.tags {
  29.  padding-right: .1em;
  30. }
  31.  
  32. ul.tags li.warnings:first-child:before {
  33.  color: #111;
  34.  content: "Archive Warnings: ";
  35.  font-weight: bold;
  36. }
  37.  
  38. ul.tags li.warnings,
  39. ul.tags li.relationships,
  40. ul.tags li.characters,
  41. ul.tags li.freeforms {
  42.  float: left !important;
  43. }
  44.  
  45. li.warnings + li.characters:before {
  46.  color: #111;
  47.  content: "Characters: ";
  48.  font-weight: bold;
  49. }
  50.  
  51. li.relationships + li.characters:before {
  52.  color: #111;
  53.  content: "Characters: ";
  54.  font-weight: bold;
  55. }
  56.  
  57. li.warnings + li.relationships:before {
  58.  color: #111;
  59.  content: "Relationships: ";
  60.  font-weight: bold;
  61. }
  62.  
  63. li.characters + li.freeforms:before {
  64.  color: #111;
  65.  content: "Freeform: ";
  66.  font-weight: bold;
  67. }
  68.  
  69. li.warnings + li.relationships,
  70. li.relationships + li.characters,
  71. li.characters + li.freeforms,
  72. li.warnings + li.characters,
  73. li.warnings + li.freeforms,
  74. li.relationships + li.freeforms {
  75.  clear: left;
  76.  padding: none;
  77. }
  78.  
  79. .listbox .index {
  80.  background: transparent;
  81.  box-shadow: none;
  82. }
  83.  
  84. .listbox,
  85. fieldset fieldset.listbox {
  86.  background: transparent;
  87.  border: none;
  88.  box-shadow: none;
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement