aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/css
diff options
context:
space:
mode:
authorMarvin Borner2019-04-17 22:51:05 +0200
committerMarvin Borner2019-04-17 22:51:05 +0200
commitff8f11091a530358ef600eedf00c21e90efe62d3 (patch)
tree5ec11bbcecb0b9c1f3db7fe91e8ff97943357a4d /src/main/resources/css
parent6051112b2811b197a32940a2aa7ffa48b7501ea0 (diff)
Fixed and improved frontend
Co-authored-by: LarsVomMars <lars@kroenner.eu>
Diffstat (limited to 'src/main/resources/css')
-rw-r--r--src/main/resources/css/fileview.css3
-rw-r--r--src/main/resources/css/layout.css50
2 files changed, 47 insertions, 6 deletions
diff --git a/src/main/resources/css/fileview.css b/src/main/resources/css/fileview.css
index 3f1a42b..9c52ac2 100644
--- a/src/main/resources/css/fileview.css
+++ b/src/main/resources/css/fileview.css
@@ -1,5 +1,4 @@
html, body {
- max-width: 100vw;
overflow: visible;
}
@@ -9,8 +8,6 @@ html, body {
.prettyprint, .preview {
position: absolute;
- height: 100%;
- max-width: 100vmin;
border: none !important;
overflow: visible;
}
diff --git a/src/main/resources/css/layout.css b/src/main/resources/css/layout.css
index 5db8bff..cb0850e 100644
--- a/src/main/resources/css/layout.css
+++ b/src/main/resources/css/layout.css
@@ -1,12 +1,56 @@
-html, body {
+body {
+ margin: 0 auto;
+}
+
+.main {
font-family: Arial, Helvetica, sans-serif;
color: #424242;
padding: 0;
margin: 0;
- min-width: 100vmin;
- min-height: 100%;
+}
+
+*:focus {
+ outline: none;
}
button {
color: #424242;
}
+
+.flex {
+ display: flex;
+ flex-flow: wrap column;
+ width: 100vw !important;
+ height: 100vh !important;
+ overflow: hidden;
+ text-align: center;
+ justify-content: center;
+ align-items: center;
+}
+
+.flex div {
+ margin: 10px;
+}
+
+.flex form input, .flex button {
+ background: none;
+ padding: 5px;
+ border: 1px solid #424242;
+ border-radius: 10px;
+}
+
+.flex .button {
+ text-decoration: none;
+ background: none;
+ padding: 5px;
+ border: 1px solid #424242;
+ border-radius: 10px;
+}
+
+.flex .button:visited {
+ color: #424242;
+}
+
+.username {
+ color: #7f8c8d;
+}