mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 10:33:52 +01:00
481d536713
* Documentation: improve the look of landing page by showing a more-compact list
17 lines
555 B
CSS
17 lines
555 B
CSS
/* SPDX-License-Identifier: MPL-2.0 */
|
|
|
|
/*
|
|
CSS file for Asciidoctor HTML documentation
|
|
See https://docs.asciidoctor.org/asciidoctor/latest/html-backend/default-stylesheet/#customize-extend
|
|
See also https://github.com/darshandsoni/asciidoctor-skins/ for custom "skins"
|
|
|
|
/* import the default Asciidoctor CSS file */
|
|
@import "https://cdn.jsdelivr.net/gh/asciidoctor/asciidoctor@2.0/data/stylesheets/asciidoctor-default.css";
|
|
|
|
/* just make the default HTML list more compact: */
|
|
.ulist p {
|
|
padding: 0;
|
|
margin-right: -4px;
|
|
margin-bottom: -4px;
|
|
}
|