diff --git a/pages/_data/docs.yml b/pages/_data/docs.yml index c2e34619e..8c59bc250 100644 --- a/pages/_data/docs.yml +++ b/pages/_data/docs.yml @@ -7,6 +7,7 @@ - page: buttons - page: cards - page: carousel +- page: colors - page: cursors - page: charts - page: divider diff --git a/pages/_docs/badges.md b/pages/_docs/badges.md index f37b5eebf..3f0d55668 100644 --- a/pages/_docs/badges.md +++ b/pages/_docs/badges.md @@ -10,7 +10,7 @@ A small count and labeling component. Please read the [official Bootstrap docume {% example %} {% for color in site.colors %} -{{ color[0] }} +{{ color[0] }} {% endfor %} {% endexample %} @@ -18,7 +18,7 @@ A small count and labeling component. Please read the [official Bootstrap docume {% example %} {% for color in site.colors %} -{{ forloop.index }} +{{ forloop.index }} {% endfor %} {% endexample %} diff --git a/pages/_docs/colors.md b/pages/_docs/colors.md index 960f3cc99..9fb3f2f3f 100644 --- a/pages/_docs/colors.md +++ b/pages/_docs/colors.md @@ -3,3 +3,49 @@ title: Colors menu: docs.colors --- +
+
+
+
+

+ Default colors +

+
+
+
    + {% for color in site.colors %} +
  • +
    {{ color[1].name | first_letters | upcase }}
    +
    + {{ color[1].name }}
    + .bg-{{ color[0] }} +
    +
  • + {% endfor %} +
+
+
+
+
+
+
+

+ Light colors +

+
+
+
    + {% for color in site.colors %} +
  • +
    {{ color[1].name | first_letters | upcase }}
    +
    + {{ color[1].name }} lite
    + .bg-{{ color[0] }}-lt +
    +
  • + {% endfor %} +
+
+
+
+
\ No newline at end of file diff --git a/pages/_docs/cursors.md b/pages/_docs/cursors.md index e9f4834af..ea745f8db 100644 --- a/pages/_docs/cursors.md +++ b/pages/_docs/cursors.md @@ -5,6 +5,13 @@ menu: docs.cursors ### Cursor utilities +- `.cursor-auto`- cursor style depends on what's inside element +- `.cursor-pointer` - pointing cursor +- `.cursor-move` - cursor showing that user can move something +- `.cursor-not-allowed` - cursor showing that user is not allowed to do something +- `.cursor-zoom-in` - cursor showing that user can zoom in +- `.cursor-zoom-out` - cursor showing that user can zoom out + {% example html %}
diff --git a/pages/colors.html b/pages/colors.html deleted file mode 100644 index 447605a70..000000000 --- a/pages/colors.html +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: Colors -done: true ---- - -
-
-
-
-

- Default colors -

-
-
-
    - {% for color in site.colors %} -
  • -
    {{ color[1].name | first_letters | upcase }}
    -
    - {{ color[1].name }}
    - .bg-{{ color[0] }} -
    -
  • - {% endfor %} -
-
-
-
-
-
-
-

- Light colors -

-
-
-
    - {% for color in site.colors %} -
  • -
    {{ color[1].name | first_letters | upcase }}
    -
    - {{ color[1].name }} lite
    - .bg-{{ color[0] }}-lt -
    -
  • - {% endfor %} -
-
-
-
-