Feat: formating and split in sections

This commit is contained in:
Bertrand Benjamin 2021-02-08 15:19:09 +01:00
parent 3250a600c9
commit 7dba11996a
2 changed files with 68 additions and 54 deletions

View File

@ -19,6 +19,12 @@ main {
margin: auto; margin: auto;
} }
section {
margin-top: 20px;
margin-bottom: 20px;
}
/* Exam analysis */ /* Exam analysis */
#select { #select {

View File

@ -55,6 +55,8 @@ layout = html.Div(
], ],
), ),
html.Main( html.Main(
children=[
html.Section(
children=[ children=[
html.Form( html.Form(
id="new-exam", id="new-exam",
@ -107,6 +109,10 @@ layout = html.Div(
), ),
], ],
), ),
]
),
html.Section(
children=[
html.Div( html.Div(
id="exercises", id="exercises",
children=[], children=[],
@ -118,6 +124,8 @@ layout = html.Div(
), ),
html.Div( html.Div(
id="summary", id="summary",
)
]
), ),
] ]
), ),