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

github.com/jgthms/bulma.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'docs/cyp/form/checkbox-radio.html')
-rw-r--r--docs/cyp/form/checkbox-radio.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/cyp/form/checkbox-radio.html b/docs/cyp/form/checkbox-radio.html
new file mode 100644
index 00000000..cad3a9af
--- /dev/null
+++ b/docs/cyp/form/checkbox-radio.html
@@ -0,0 +1,29 @@
+---
+layout: cypress
+title: Form/Checkbox Radio
+---
+
+<label id="checkbox" class="checkbox">
+ <input type="checkbox">
+ I agree to the <a href="#">terms and conditions</a>
+</label>
+
+<label id="checkbox-disabled" class="checkbox" disabled>
+ <input type="checkbox" disabled>
+ Save my preferences
+</label>
+
+<div id="radio" class="control">
+ <label class="radio">
+ <input type="radio" name="rsvp">
+ Going
+ </label>
+ <label class="radio">
+ <input type="radio" name="rsvp">
+ Not going
+ </label>
+ <label class="radio" disabled>
+ <input type="radio" name="rsvp" disabled>
+ Maybe
+ </label>
+</div>