diff options
| author | Priyansh <[email protected]> | 2020-11-11 23:33:13 +0530 |
|---|---|---|
| committer | Priyansh <[email protected]> | 2020-11-11 23:33:13 +0530 |
| commit | 5b367f87cf293abacebff55d4988e5b48a78373a (patch) | |
| tree | 521beb82d9797d83dcf414fb3a196e7978194fd9 /css/layouts.css | |
| parent | e63188d43a9f859c6bced8306310f74559f3e3e3 (diff) | |
| download | nineties-computing-5b367f87cf293abacebff55d4988e5b48a78373a.tar.xz nineties-computing-5b367f87cf293abacebff55d4988e5b48a78373a.zip | |
Added new user account form
Diffstat (limited to 'css/layouts.css')
| -rw-r--r-- | css/layouts.css | 29 |
1 files changed, 26 insertions, 3 deletions
diff --git a/css/layouts.css b/css/layouts.css index d4496b6..f65d7c0 100644 --- a/css/layouts.css +++ b/css/layouts.css @@ -10,7 +10,10 @@ .fullscreen_centered { z-index: 2; - margin: calc(25vh - 25px) auto 0px auto; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); } .height_100-55 { @@ -18,8 +21,8 @@ } .mediumbox { - width: 50vh; - height: 50vh; + width: 60vh; + max-height: auto; } .padding_25 { @@ -30,3 +33,23 @@ border: 4px solid #383838; } +.center_text { + text-align: center; +} + +.justify_text { + text-align: justify; +} + +.image_block { + width: 128px; + height: 128px; + background-color: #b9b9b9; + display: inline-block; + margin-right: 20px; + cursor: pointer; +} + +.form_elements { + margin-top: 20px; +} |
