summaryrefslogtreecommitdiff
path: root/styles/auth.css
diff options
context:
space:
mode:
Diffstat (limited to 'styles/auth.css')
-rw-r--r--styles/auth.css46
1 files changed, 46 insertions, 0 deletions
diff --git a/styles/auth.css b/styles/auth.css
new file mode 100644
index 0000000..8100ecd
--- /dev/null
+++ b/styles/auth.css
@@ -0,0 +1,46 @@
+.form-auth {
+ max-width: 330px;
+ padding: 15px;
+ margin: 0 auto;
+}
+.form-auth img {
+ display: block;
+ margin-left: auto;
+ margin-right: auto;
+ margin-bottom: 10px;
+}
+.form-auth .form-auth-heading {
+ margin-bottom: 10px;
+}
+.form-auth .form-control {
+ position: relative;
+ height: auto;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ padding: 10px;
+ font-size: 16px;
+ width: 100%;
+ display: block;
+ margin-left: auto;
+ margin-right: auto;
+}
+.form-auth .form-control:focus {
+ z-index: 2;
+}
+.form-auth input[type="text"] {
+ margin-bottom: -1px;
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0;
+}
+.form-auth input[type="password"] {
+ margin-bottom: 10px;
+ border-top-left-radius: 0;
+ border-top-right-radius: 0;
+}
+.form-auth button[type="submit"] {
+ display: block;
+ margin-left: auto;
+ margin-right: auto;
+ width: 100%;
+}