From 5a16046eddc753b752c5ab1fdb91595adf588a6b Mon Sep 17 00:00:00 2001 From: Mitsuo Tokumori Date: Mon, 13 Nov 2023 10:55:39 -0500 Subject: Add sample file upload for "load_data" blueprint Also add a success page that redirects to the Dashboard --- ustayml/static/style.css | 37 +++++++++++++++++++++++++++++++++++-- 1 file changed, 35 insertions(+), 2 deletions(-) (limited to 'ustayml/static/style.css') 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 */ -- cgit v1.2.3