diff options
| author | Sam Wilkins <samwilkins333@gmail.com> | 2019-02-24 14:11:16 -0500 |
|---|---|---|
| committer | Sam Wilkins <samwilkins333@gmail.com> | 2019-02-24 14:11:16 -0500 |
| commit | b140847f9f9de19879bd1bdf896b995c87761272 (patch) | |
| tree | 669f9365c605f854e23901b9824242e8781103bc /views/stylesheets/authentication.css | |
| parent | c4a15bf0abed7a6b2ea3fa7d47f1027e02a2874b (diff) | |
commenting and preliminary login styling
Diffstat (limited to 'views/stylesheets/authentication.css')
| -rw-r--r-- | views/stylesheets/authentication.css | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/views/stylesheets/authentication.css b/views/stylesheets/authentication.css new file mode 100644 index 000000000..dd49e31dc --- /dev/null +++ b/views/stylesheets/authentication.css @@ -0,0 +1,62 @@ +#email_label { + color: blue; + margin-top: 10px; +} + +h3, +label { + font-family: Arial, Helvetica, sans-serif; +} + +body { + background-color: lightslategray; +} + +#login_label { + text-align: left; +} + +#submit { + width: 224px; + height: 35px; + font-family: Arial, Helvetica, sans-serif; + font-size: 14px; + font-style: oblique; +} + +.overlay { + text-align: center; + position: absolute; + margin: auto; + top: 0; + bottom: 0; + left: 0; + right: 0; + width: 400px; + height: 300px; + background-color: white; + border-radius: 8px; + box-shadow: 10px 10px 10px #00000033; +} + +.inner { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + width: 230px; + height: 230px; + margin: auto; +} + +.form-control { + width: 200px; + margin-bottom: 15px; + height: 30px; + outline: none; + padding-left: 10px; + padding-right: 10px; + font-family: Arial, Helvetica, sans-serif; + font-size: 16px; +}
\ No newline at end of file |
