120 lines
1.9 KiB
CSS
120 lines
1.9 KiB
CSS
html, body {
|
|
height: 100%;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: sans-serif;
|
|
background-color: #ecf0f5;
|
|
}
|
|
|
|
.app-container {
|
|
display: flex;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
#map {
|
|
flex-grow: 1;
|
|
height: 100%;
|
|
z-index: 1;
|
|
}
|
|
|
|
.popup-content {
|
|
font-family: sans-serif;
|
|
line-height: 1.6;
|
|
min-width: 200px;
|
|
}
|
|
|
|
.btn-delete {
|
|
background-color: #ff4d4d;
|
|
color: white;
|
|
border: none;
|
|
padding: 5px;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
width: 48%;
|
|
}
|
|
|
|
.btn-edit {
|
|
background-color: #ffc107;
|
|
color: black;
|
|
border: none;
|
|
padding: 5px;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
width: 48%;
|
|
}
|
|
|
|
.btn-save {
|
|
background-color: #28a745;
|
|
color: white;
|
|
border: none;
|
|
padding: 8px;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
margin-top: 10px;
|
|
width: 100%;
|
|
}
|
|
|
|
.button-group {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
input,
|
|
select {
|
|
margin-bottom: 5px;
|
|
padding: 5px;
|
|
width: 95%;
|
|
}
|
|
|
|
#sidebar {
|
|
width: 320px;
|
|
min-width: 320px;
|
|
height: 100%;
|
|
background-color: #ffffff;
|
|
border-right: 1px solid #ccc;
|
|
box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 20px;
|
|
box-sizing: border-box;
|
|
overflow-y: auto;
|
|
z-index: 1000;
|
|
}
|
|
|
|
#sidebar h2 {
|
|
margin-top: 0;
|
|
font-size: 1.4rem;
|
|
color: #2c3e50;
|
|
border-bottom: 2px solid #3498db;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
#sidebar h4 {
|
|
margin: 15px 0 5px 0;
|
|
color: #34495e;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.search-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
}
|
|
|
|
.search-container button {
|
|
background-color: #3498db;
|
|
color: white;
|
|
border: none;
|
|
padding: 8px 12px;
|
|
border-radius: 3px;
|
|
cursor: pointer;
|
|
width: 100%;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.search-container button:hover {
|
|
background-color: #2980b9;
|
|
} |