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
Line 11: Line 11:
   font-weight: bold;
   font-weight: bold;
   content: ' · ';
   content: ' · ';
  white-space: nowrap;
}
}



Revision as of 16:53, 5 July 2021

.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;
}