diff options
Diffstat (limited to 'app/src/styles')
-rw-r--r-- | app/src/styles/Auth.module.css | 7 | ||||
-rw-r--r-- | app/src/styles/Create.module.css | 11 | ||||
-rw-r--r-- | app/src/styles/Dashboard.module.css | 56 |
3 files changed, 60 insertions, 14 deletions
diff --git a/app/src/styles/Auth.module.css b/app/src/styles/Auth.module.css index 841665a..bd8059c 100644 --- a/app/src/styles/Auth.module.css +++ b/app/src/styles/Auth.module.css @@ -8,7 +8,7 @@ body { .container { font-size: 17px; position: absolute; - max-width: 500px; + width: 400px; top: 50%; left: 50%; transform: translate(-50%, -50%); @@ -27,7 +27,8 @@ h1 { .authInput { display: block; margin: 10px auto; - width: 300px; + width: 100%; + box-sizing: border-box; border-radius: 5px; padding: 15px; font-size: 17px; @@ -62,6 +63,8 @@ button:active { visibility: visible; color: #ee6161; font-weight: 600; + word-wrap: break-word; + width: 100%; } .errorHidden { diff --git a/app/src/styles/Create.module.css b/app/src/styles/Create.module.css deleted file mode 100644 index d8dbcb7..0000000 --- a/app/src/styles/Create.module.css +++ /dev/null @@ -1,11 +0,0 @@ -.createInput { - display: block; - margin: 10px auto; - width: 470px; - border-radius: 5px; - padding: 15px; - color: #ccc; - background-color: #3b4148; - border: none; - font-size: 17px; -}
\ No newline at end of file diff --git a/app/src/styles/Dashboard.module.css b/app/src/styles/Dashboard.module.css index fbc1d6d..e87c414 100644 --- a/app/src/styles/Dashboard.module.css +++ b/app/src/styles/Dashboard.module.css @@ -5,6 +5,61 @@ body { background-color: #2c3338; } +.createContainer { + margin: 25px auto 25px auto; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + width: 1000px; +} + +.createContainer h1 { + font-size: 25px; + text-align: center; + width: 100%; + box-sizing: border-box; +} + +.createContainer form { + display: flex; + gap: 10px; + width: 100%; +} + +.createContainer form input { + display: block; + margin: 10px auto; + width: 60%; + box-sizing: border-box; + border-radius: 5px; + padding: 15px; + font-size: 17px; + color: #ccc; + background-color: #3b4148; + border: none; +} + +.createContainer form button { + width: 40%; +} + +.errorVisible { + visibility: visible; + color: #ee6161; + font-weight: 600; + word-wrap: break-word; + width: 100%; + text-align: center; + font-size: 17px; + margin: 0 auto; +} + +.errorHidden { + visibility: hidden; + color: #ee6161; +} + .loadingSpinner { display: flex; flex-direction: column; @@ -56,7 +111,6 @@ table td { .mainTable { position: absolute; - top: 150px; left: 50%; transform: translateX(-50%); } |