34 lines
387 B
CSS
34 lines
387 B
CSS
#map {
|
|
height: 800px;
|
|
width: 1200px;
|
|
margin: auto;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
width: 100%;
|
|
align-content: center;
|
|
}
|
|
|
|
.left-column {
|
|
display: flex;
|
|
width: 20%;
|
|
max-height: 80%;
|
|
padding: 10px;
|
|
}
|
|
|
|
.right-column {
|
|
display: flex;
|
|
width: 80%;
|
|
padding: 10px;
|
|
}
|
|
|
|
.cities {
|
|
list-style: none;
|
|
}
|
|
|
|
.header > * {
|
|
text-align: center;
|
|
}
|
|
|