diff --git a/htdocs/parts/intro.php b/htdocs/parts/intro.php index 2325247..c819a1c 100644 --- a/htdocs/parts/intro.php +++ b/htdocs/parts/intro.php @@ -3,6 +3,8 @@ if(basename(__FILE__) == basename($_SERVER["SCRIPT_FILENAME"])) { header('HTTP/1.1 403 Forbidden'); die(); } + +global $root_path; ?>
These rules apply to the "core" part of the stylesheet:
-???.
+
+ By default, ordered and unordered lists have no bullet.
+ This behavior can be used to create custom styled lists that still remain helpful for SEO and accessibility.
+
+ Regular-looking lists can be created by simply adding the .l-bullets
+ or .list-bullets class to list's root element.
+ These classes must also be used for any nested children lists !
+
+ By default, the lists do not include their bullet in the parent element.
+ This is due to the fact that the imposed spacings when using
+ list-style-position: inside; looks like absolute trash.
+
+ This behavior can be changed by using the .l-bullet-inside
+ or list-bullet-inside classes.
+ Alternatively, a nicer manual spacing can be applied by using the .l-bullet-manual
+ or list-bullet-manual classes.
+
+ Please note that the following classes must be applied to the root element and any nested + list's root element too. +
+Outside (Default)
+Inside
+Manual (Recommended)
+
+ Each list and its entry can have its bullets' style changed by using the following classes in the
+ ul, ol or li elements.
+ The type property also works as expected in these cases.
+
+ Please note that some of the more exotic bullet styles may not fit properly when using
+ the manual position as shown below.
+ This is a known issue and won't be fixed as it is an edge-case.
+