From 8c82c32015b2c780f2b5662ff495f55153a5a26f Mon Sep 17 00:00:00 2001 From: Mitsuo Tokumori Date: Sun, 12 Nov 2023 18:14:47 -0500 Subject: Add "Regresar" button on student details --- ustayml/static/style.css | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) (limited to 'ustayml/static') diff --git a/ustayml/static/style.css b/ustayml/static/style.css index 0ff4975..71ffd97 100644 --- a/ustayml/static/style.css +++ b/ustayml/static/style.css @@ -24,7 +24,7 @@ h6 { h1 { font-size: 22pt; - margin: 1rem 0; + /* margin: 0.5rem 0; */ } h2 { @@ -99,14 +99,23 @@ header .action { .content > header { border-bottom: 1px solid lightgray; - display: flex; - align-items: flex-end; + /* display: flex; + align-items: flex-end; */ margin-bottom: 1em; } .content > header h1 { flex: auto; - margin: 1rem 0 0.25rem 0; + margin: 0.5rem 0 0.25rem 0; +} + +.content > header a { + display:block; +} + +.flex-container-horizontal { + display: flex; + align-items: flex-end; } @@ -192,23 +201,23 @@ header .action { /* student.details */ -.student-details-container { +.student-details-body { display: flex; justify-content: space-between; min-height: 20em; } -.student-details-container > div { +.student-details-body > div { padding: .5em; border: 1px solid black; } -.student-details-container > #information-left { +.student-details-body > #information-left { width: 40%; margin-right: 1em; } -.student-details-container > #information-right { +.student-details-body > #information-right { flex: auto; } -- cgit v1.2.3