Skip to content

Commit

Permalink
ui: made title/input responsive #56 pending "details"
Browse files Browse the repository at this point in the history
  • Loading branch information
azimut committed Sep 17, 2024
1 parent 7a1ba31 commit 4cb9c05
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions frontend/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,21 +46,31 @@
left: 50%;
transform: translate(-50%, -50%);
}

/* ----------------- */
header {
display: flex;
flex-direction: row;
margin: auto;
flex-direction: column;
font-size: 4em;
justify-content: center;
padding: 0.3em 0 0.3em 0;
text-align: center;
}
header > * {
margin: 0.1em auto;
}
@media (min-width: 1200px) {
header {
flex-direction: row;
}
header > * {
margin: 0 0.2em;
}
}
header span.pod {
color: hsl(24, 90%, 80%);
}
form {
margin: 0 0 0 0.5em;
display: flex;
display: flex; /* Vertical align */
flex-direction: column;
justify-content: center;
}
Expand All @@ -72,7 +82,7 @@
border-radius: 0.1em;
flex-grow: 0;
}

/* ----------------- */
footer {
text-align: center;
padding: 1em 0em;
Expand Down

0 comments on commit 4cb9c05

Please sign in to comment.