SabradouMap/style.css

34 lines
387 B
CSS
Raw Normal View History

2023-07-11 14:08:23 +02:00
#map {
2023-07-13 18:31:31 +02:00
height: 800px;
2023-07-11 17:32:16 +02:00
width: 1200px;
2023-07-13 18:31:31 +02:00
margin: auto;
2023-07-11 18:03:40 +02:00
}
.container {
2023-07-13 18:31:31 +02:00
display: flex;
2023-07-13 14:28:23 +02:00
width: 100%;
2023-07-13 18:31:31 +02:00
align-content: center;
2023-07-13 14:28:23 +02:00
}
.left-column {
display: flex;
width: 20%;
2023-07-13 18:31:31 +02:00
max-height: 80%;
2023-07-13 14:28:23 +02:00
padding: 10px;
}
.right-column {
display: flex;
width: 80%;
padding: 10px;
}
2023-07-13 18:31:31 +02:00
.cities {
list-style: none;
}
.header > * {
text-align: center;
2023-07-13 14:28:23 +02:00
}