diff options
| author | Mitsuo Tokumori <rtokumori@pucp.edu.pe> | 2023-11-13 10:55:39 -0500 |
|---|---|---|
| committer | Mitsuo Tokumori <rtokumori@pucp.edu.pe> | 2023-11-13 10:55:39 -0500 |
| commit | 5a16046eddc753b752c5ab1fdb91595adf588a6b (patch) | |
| tree | 870192e1f576754c6fd669cd4e3dad6f70a7caf7 /ustayml/static/style.css | |
| parent | f6fcf9cc3ae3d93d59391b3f12843fba3297f0b2 (diff) | |
Add sample file upload for "load_data" blueprint
Also add a success page that redirects to the Dashboard
Diffstat (limited to 'ustayml/static/style.css')
| -rw-r--r-- | ustayml/static/style.css | 37 |
1 files changed, 35 insertions, 2 deletions
diff --git a/ustayml/static/style.css b/ustayml/static/style.css index 0357f46..3d52059 100644 --- a/ustayml/static/style.css +++ b/ustayml/static/style.css @@ -117,7 +117,7 @@ header .action { .flex-container-horizontal { display: flex; - align-items: flex-end; + align-items: center; } /* tooltip */ @@ -257,6 +257,39 @@ header .action { flex: auto; } +/* load_data */ + +ul.data-validation-list { + list-style: none; + margin-left: 2em; + padding-left: 0; +} + +ul.data-validation-list li:before { + content: '☑️'; + padding-right: 1em; +} + +ul.data-validation-list li { + /* padding-left: 0.5em; */ + text-indent: -2em; +} + +.load-data-step { + margin-top: 1em; + padding: 0 .5em; + border: 1px solid black; +} + +.load-data-step .left { + /* background-color: aqua; */ + padding-right: 1em; +} + +.load-data-step .right { + width: 40%; +} + /* post */ .post > header { @@ -314,7 +347,7 @@ input.danger { input[type="submit"] { align-self: start; - min-width: 10em; + /* min-width: 10em; */ } /* text status styles */ |
