diff options
Diffstat (limited to 'src/main/resources/css')
-rw-r--r-- | src/main/resources/css/fileview.css | 3 | ||||
-rw-r--r-- | src/main/resources/css/layout.css | 50 |
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; +} |