aboutsummaryrefslogtreecommitdiff
path: root/admin/public/style.css
diff options
context:
space:
mode:
authorMarvin Borner2020-10-10 17:05:27 +0200
committerMarvin Borner2020-10-10 17:05:27 +0200
commit72f5731adeebf8d76c5c2dcc266f600ba57812d8 (patch)
tree4d774eb3d0464411a1bb09472c597298aa8965e8 /admin/public/style.css
parent167600b52eb03801bb7051a09dcb0e4f159cfb2a (diff)
Added basic admin interface
Diffstat (limited to 'admin/public/style.css')
-rw-r--r--admin/public/style.css33
1 files changed, 33 insertions, 0 deletions
diff --git a/admin/public/style.css b/admin/public/style.css
new file mode 100644
index 0000000..77853bf
--- /dev/null
+++ b/admin/public/style.css
@@ -0,0 +1,33 @@
+html,
+body {
+ padding: 0;
+ margin: 0;
+ height: 100%;
+ width: 100%;
+ background-color: #eec0c6;
+ background-image: linear-gradient(315deg, #eec0c6 0%, #7ee8fa 74%);
+}
+
+.card {
+ position: absolute;
+ max-height: 80%;
+ overflow: auto;
+ width: 30%;
+ left: 50%;
+ top: 50%;
+ -webkit-transform: translate(-50%, -50%);
+ transform: translate(-50%, -50%);
+ padding: 20px;
+ border-radius: 10px;
+ background: white;
+}
+
+div {
+ background: white;
+}
+
+@media only screen and (max-width: 600px) {
+ .card {
+ width: calc(100% - 50px);
+ }
+}