2021-01-31 05:11:18 -08:00
|
|
|
.pin-marker {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
border-radius: 50%;
|
|
|
|
background-color: white;
|
|
|
|
border: 2px blue solid;
|
2021-02-01 15:31:36 -08:00
|
|
|
cursor: pointer;
|
2021-02-06 11:57:19 -08:00
|
|
|
color: black;
|
|
|
|
text-align: center;
|
|
|
|
line-height: 200%;
|
2021-01-31 05:11:18 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.pin-marker:hover {
|
|
|
|
background-color: #f15a24;
|
2021-02-06 11:57:19 -08:00
|
|
|
color: white;
|
2021-02-06 14:07:58 -08:00
|
|
|
transform: scale(2);
|
|
|
|
z-index: 2;
|
2021-01-31 05:11:18 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.pin-marker.highlight {
|
|
|
|
border: 2px #f15a24 solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pin-marker.selected {
|
|
|
|
background-color: #fc935a;
|
|
|
|
}
|
|
|
|
|
2021-02-10 15:52:19 -08:00
|
|
|
.connector-container {
|
2021-01-31 05:11:18 -08:00
|
|
|
width: 100%;
|
|
|
|
overflow-x: scroll;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2021-02-10 15:52:19 -08:00
|
|
|
.connector-div {
|
2021-01-31 05:11:18 -08:00
|
|
|
height: 100%;
|
|
|
|
position: relative;
|
|
|
|
z-index: 0;
|
|
|
|
}
|
|
|
|
|
2021-02-10 15:52:19 -08:00
|
|
|
.connector-img {
|
2021-01-31 05:11:18 -08:00
|
|
|
height: 100%;
|
|
|
|
z-index: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
border-collapse: collapse;
|
|
|
|
width: clamp(100%, 100%, 1000px);
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 1000px) {
|
|
|
|
table {
|
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 1000px) {
|
|
|
|
table {
|
|
|
|
font-size: 3rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-01 15:31:36 -08:00
|
|
|
table tbody tr {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2021-01-31 05:11:18 -08:00
|
|
|
table td, table th {
|
|
|
|
border: 1px solid black;
|
|
|
|
padding: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
table tr:nth-child(even){
|
|
|
|
background-color: #fc935a;
|
|
|
|
}
|
|
|
|
|
|
|
|
table tr:hover {
|
|
|
|
background-color: #f15a24;
|
|
|
|
}
|
|
|
|
|
|
|
|
table th {
|
|
|
|
padding-top: 12px;
|
|
|
|
padding-bottom: 12px;
|
|
|
|
text-align: left;
|
|
|
|
background-color: #f15a24;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
html {
|
|
|
|
background-color: black;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
table td, table th {
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
table th {
|
|
|
|
color: white
|
|
|
|
}
|
|
|
|
|
|
|
|
table tr:nth-child(even){
|
|
|
|
background-color: #230c00;
|
|
|
|
color: white;
|
|
|
|
}
|
2021-02-01 15:31:36 -08:00
|
|
|
|
|
|
|
table tr:hover {
|
|
|
|
background-color: #f15a24;
|
|
|
|
}
|
2021-01-31 05:11:18 -08:00
|
|
|
}
|
|
|
|
|