- Use proper HTML; - Add specific CSS of this page in a dedicated file; - Add common header; - Move places' JavaScript in a dedicated file, improve its code and fix its access to DOM elements.
17 lines
246 B
CSS
17 lines
246 B
CSS
.place {
|
|
align-content: center;
|
|
align-items: center;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|
|
|
|
.place_input {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
#add_place, #save_changes {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|