aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/assets/main.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources/assets/main.css')
-rw-r--r--src/main/resources/assets/main.css54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/main/resources/assets/main.css b/src/main/resources/assets/main.css
new file mode 100644
index 0000000..0f0e42f
--- /dev/null
+++ b/src/main/resources/assets/main.css
@@ -0,0 +1,54 @@
+body {
+ font-family: sans-serif;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ width: 100%;
+ height: 100%;
+}
+
+form {
+ border: 1px solid #f1f1f1;
+ border-radius: .25em;
+ padding: 1em;
+ box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
+}
+
+h3 {
+ color: cccccc;
+}
+
+input[type=text], input[type=password] {
+ display: block;
+ margin-top: 1em;
+ margin-bottom: 1em;
+ border: 1px solid #f1f1f1;
+ border-radius: 2px;
+ padding: 0.25em;
+ width: 100%;
+}
+
+button {
+ border-radius: 2px;
+ background-color: #0daa1a;
+ color: #ffffff;
+ padding: 1em;
+ border: none;
+ cursor: pointer;
+ width: 100%;
+}
+button:hover {
+ opacity: 0.8;
+}
+img {
+ margin-bottom: 2em;
+}
+
+.alert {
+ padding: 1em;
+ margin-bottom: 1em;
+ border-radius: 2px;
+ background-color: #ff6f6f;
+ color: #5c0500;
+} \ No newline at end of file