summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorGerman M. Bravo <german.mb@deipi.com>2011-02-04 21:15:43 -0600
committerGerman M. Bravo <german.mb@deipi.com>2011-02-04 21:15:43 -0600
commit515085d266074f0d7fb1ba513e945b365f3affaf (patch)
treea3aad60929ea284ea9539068f1adf56fa79f7048 /README.rst
parent4c5ee599b5d545f87d298f7c3200c02db4acc0b3 (diff)
downloadpyscss-515085d266074f0d7fb1ba513e945b365f3affaf.tar.gz
Documentation updated
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.rst b/README.rst
index 235a7b4..c353186 100644
--- a/README.rst
+++ b/README.rst
@@ -20,7 +20,7 @@ structure but it's been completely rewritten and many bugs have been fixed.
Usage
=====
-# **Nested Rules**
+#. **Nested Rules**
Example::
.selector {
@@ -41,7 +41,7 @@ Usage
color: #00f;
}
-# **Variables**
+#. **Variables**
Example::
$main-color: #ce4dd6;
@@ -61,7 +61,7 @@ Usage
border-bottom-style: solid;
}
-# **Mixins**
+#. **Mixins**
Example::
@mixin rounded($side, $radius: 10px) {
@@ -73,7 +73,7 @@ Usage
#footer { @include rounded(top, 5px); }
#sidebar { @include rounded(left, 8px); }
-...produces::
+ ...produces::
#navbar li {
border-top-radius: 10px;
@@ -91,7 +91,7 @@ Usage
-webkit-border-left-radius: 8px;
}
-# **Extend** (using `@extend`)
+#. **Extend** (using `@extend`)
Example::
.error {