diff options
| author | Mitsuo Tokumori <rtokumori@pucp.edu.pe> | 2023-11-12 18:14:47 -0500 |
|---|---|---|
| committer | Mitsuo Tokumori <rtokumori@pucp.edu.pe> | 2023-11-12 18:14:47 -0500 |
| commit | 8c82c32015b2c780f2b5662ff495f55153a5a26f (patch) | |
| tree | ff4ef825e85b8dc113b90e62c2d07a84711892c0 /ustayml/static | |
| parent | 907f8e563b648b426f93ee162f9f703013f9ad50 (diff) | |
Add "Regresar" button on student details
Diffstat (limited to 'ustayml/static')
| -rw-r--r-- | ustayml/static/style.css | 25 |
1 files changed, 17 insertions, 8 deletions
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; } |
