Template:Dotlist/style.css: Difference between revisions

Template page
(Created page with ".dotlist ul { list-style-type: none; margin-left: 0; } .dotlist ul > li { display: inline; } .dotlist ul > li::after { font-weight: bold; content: ' · '; } .dotl...")
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 11: Line 11:
   font-weight: bold;
   font-weight: bold;
   content: ' · ';
   content: ' · ';
  white-space: nowrap;
}
}


.dotlist ul > li:last-of-type::after {
.dotlist ul > li:last-of-type::after {
   display: none;
   display: none;
}
[class^="infobox"] .dotlist ul {
  margin: 0;
}
}

Latest revision as of 07:29, 14 January 2022

.dotlist ul {
  list-style-type: none;
  margin-left: 0;
}

.dotlist ul > li {
  display: inline;
}

.dotlist ul > li::after {
  font-weight: bold;
  content: ' · ';
  white-space: nowrap;
}

.dotlist ul > li:last-of-type::after {
  display: none;
}

[class^="infobox"] .dotlist ul {
  margin: 0;
}