diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-05-06 22:38:45 +0300 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-05-06 22:38:45 +0300 |
| commit | 0f96c5c380b27f31d2a129b9f56faa6bf861194b (patch) | |
| tree | 56622a99561b753d6223a320931740bb7e433bae /ExamTemplate | |
| parent | 0edb502a9fa2b48410b302b492e4e110a3502eec (diff) | |
| download | it-kariera-exam-template-0f96c5c380b27f31d2a129b9f56faa6bf861194b.tar it-kariera-exam-template-0f96c5c380b27f31d2a129b9f56faa6bf861194b.tar.gz it-kariera-exam-template-0f96c5c380b27f31d2a129b9f56faa6bf861194b.zip | |
Added some form styling
Diffstat (limited to 'ExamTemplate')
| -rw-r--r-- | ExamTemplate/Web/wwwroot/css/styles.css | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/ExamTemplate/Web/wwwroot/css/styles.css b/ExamTemplate/Web/wwwroot/css/styles.css index 51631c0..36880f5 100644 --- a/ExamTemplate/Web/wwwroot/css/styles.css +++ b/ExamTemplate/Web/wwwroot/css/styles.css @@ -82,6 +82,36 @@ justify-content: center; } +/* Forms */ + +form { + display: flex; + flex-direction: column; + margin-top: 10px; + align-items: center; + justify-content: center; + max-width: 300px; + margin-left: auto; + margin-right: auto; +} + +form > * { + width: 100%; + box-sizing: border-box; +} + +input { + margin: 5px; + padding: 9px; + border: 1px solid darkgrey; + border-radius: 4px; +} + +input[type="submit"] { + color: white; + background-color: black; +} + /* Other general stuff */ .flex-spacer { |
