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;
}
section {
margin-top: 20px;
margin-bottom: 20px;
}
/* Exam analysis */
#select {

View File

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