update sciezki
[edumed.git] / catalogue / static / catalogue / css / layout.scss
index 637bd50..a941469 100755 (executable)
@@ -110,3 +110,17 @@ $new_black: #363a3e;
     .previous-lesson {float: left;}
     .next-lesson {float: right;}
 }
+
+ol.alpha {
+    counter-reset: list;
+    > li {
+        list-style: none;
+        position: relative;
+    }
+    > li:before {
+        counter-increment: list;
+        content: counter(list, lower-alpha) ") ";
+        position: absolute;
+        left: -1.4em;
+    }
+}