summaryrefslogtreecommitdiff
path: root/editor/forms.css
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@chimrod.com>2021-04-29 15:20:11 +0200
committerSébastien Dailly <sebastien@dailly.me>2022-02-07 16:43:33 +0100
commit2fc4e793b12341df6264e22c0b8bd0f6dd2bd27d (patch)
treeb61b55dc11e4361927c1638d1eb4e82feeef5465 /editor/forms.css
parenteb319516fd922ab89b7120a885d1e801fa3f45aa (diff)
Added pop-up and events in editor
Diffstat (limited to 'editor/forms.css')
-rwxr-xr-xeditor/forms.css32
1 files changed, 32 insertions, 0 deletions
diff --git a/editor/forms.css b/editor/forms.css
new file mode 100755
index 0000000..a75de92
--- /dev/null
+++ b/editor/forms.css
@@ -0,0 +1,32 @@
+form .row::after {
+
+ content: "";
+ display: table;
+ clear: both;
+
+}
+
+form .col-25 {
+ float: left;
+ width: 25%;
+}
+
+form .col-75 {
+ float: left;
+ width: 75%;
+}
+
+form label {
+ padding: 12px 12px 12px 0px;
+ display: inline-block;
+
+}
+
+form input[type="text"] {
+ padding: 12px 0px;
+ width: 100%;
+}
+
+input[type=submit] {
+ float: right;
+}