Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/rfs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2019-02-17 16:36:35 +0300
committerGitHub <noreply@github.com>2019-02-17 16:36:35 +0300
commit7f01e499f32caebf02a3f34c629817d60ca2758a (patch)
treea07db00286a3d92ff14154145b4943d8b52690be /README.md
parentbf7cba99196dbc18286a7d7d0e52d938c903ecbd (diff)
docs: use lowercase `or`. (#94)
Diffstat (limited to 'README.md')
-rw-r--r--README.md28
1 files changed, 23 insertions, 5 deletions
diff --git a/README.md b/README.md
index b31cf5b..4401b2d 100644
--- a/README.md
+++ b/README.md
@@ -79,7 +79,11 @@ project/
@import "../node_modules/rfs/scss";
.title {
- @include font-size(4rem); // OR @include responsive-font-size(64px); OR @include rfs(64);
+ @include font-size(4rem);
+ // or
+ @include responsive-font-size(64px);
+ // or
+ @include rfs(64);
}
```
@@ -91,7 +95,11 @@ project/
@import "../node_modules/rfs/sass"
.title
- +font-size(4rem) // OR +responsive-font-size(64px) OR +rfs(64)
+ +font-size(4rem)
+ // or
+ +responsive-font-size(64px)
+ // or
+ +rfs(64)
```
@@ -101,7 +109,9 @@ project/
// postcss/main.css
.title {
- responsive-font-size: 4rem; // OR rfs: 64;
+ responsive-font-size: 4rem;
+ // or
+ rfs: 64;
}
// Handle postcss afterwards (see examples folder for PostCSS example)
@@ -116,7 +126,11 @@ project/
@import "../node_modules/rfs/less";
.title {
- .font-size(4rem); // OR .responsive-font-size(64px); OR .rfs(64);
+ .font-size(4rem);
+ // or
+ .responsive-font-size(64px);
+ // or
+ .rfs(64);
}
```
@@ -129,7 +143,11 @@ project/
@import "../node_modules/rfs/stylus";
.title
- font-size(4rem) // OR responsive-font-size(64px) OR rfs(64)
+ font-size(4rem)
+ // or
+ responsive-font-size(64px)
+ // or
+ rfs(64)
```