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

github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'docs/src/contents/cursors.pug')
-rw-r--r--docs/src/contents/cursors.pug31
1 files changed, 31 insertions, 0 deletions
diff --git a/docs/src/contents/cursors.pug b/docs/src/contents/cursors.pug
new file mode 100644
index 0000000..ed290b8
--- /dev/null
+++ b/docs/src/contents/cursors.pug
@@ -0,0 +1,31 @@
+p Cursor utilities specify which mouse cursor to display when mouseover.
+
+.docs-demo.columns
+ .column.col-4
+ .bg-gray.docs-block.c-hand c-hand
+ .column.col-4
+ .bg-gray.docs-block.c-move c-move
+ .column.col-4
+ .bg-gray.docs-block.c-zoom-in c-zoom-in
+ .column.col-4
+ .bg-gray.docs-block.c-zoom-out c-zoom-out
+ .column.col-4
+ .bg-gray.docs-block.c-not-allowed c-not-allowed
+ .column.col-4
+ .bg-gray.docs-block.c-auto c-auto
+
+pre.code(data-lang='HTML')
+ code
+ :highlight(lang="html")
+ <!-- cursor: hand; -->
+ <div class="c-hand"></div>
+ <!-- cursor: move; -->
+ <div class="c-move"></div>
+ <!-- cursor: zoom-in; -->
+ <div class="c-zoom-in"></div>
+ <!-- cursor: zoom-out; -->
+ <div class="c-zoom-out"></div>
+ <!-- cursor: not-allowed; -->
+ <div class="c-not-allowed"></div>
+ <!-- cursor: auto; -->
+ <div class="c-auto"></div> \ No newline at end of file