File size: 2,504 Bytes
38cc9d1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 |
.container {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.map-container {
position: relative;
width: 100%;
max-width: 1000px;
/* hoặc kích thước tối đa mong muốn */
margin: 0 auto;
}
.map-container img,
#mapCanvas {
width: 100%;
height: auto;
display: block;
}
.map-container img {
width: 100%;
height: auto;
display: block;
}
#mapCanvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}
#vietnam-map {
width: 100%;
height: 100%;
}
.tooltip-box {
width: 30vw;
min-width: 200px;
max-width: 350px;
background-color: #f0f8ff;
opacity: 0.9;
border-radius: 12px;
padding: 10px;
font-family: 'Segoe UI', sans-serif;
color: #1a1a1a;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
display: none;
position: absolute;
text-align: center;
z-index: 1000;
transition: left 0.1s ease-out, top 0.1s ease-out;
pointer-events: none;
max-height: 80vh;
overflow-y: auto;
}
.tooltip-box.active {
display: block !important;
}
.tooltip-box h2 {
text-align: center;
color: #2b55b4;
font-size: 25px;
margin-bottom: 20px;
}
.tooltip-box .highlight {
color: #2b55b4;
font-weight: bold;
font-size: 16px;
}
.tooltip-box hr {
margin: 20px 0;
border: none;
border-top: 1px solid #ccc;
}
/* Media queries cho điện thoại */
@media screen and (max-width: 768px) {
.tooltip-box {
width: 85vw;
/* Giảm xuống để phù hợp với màn hình điện thoại */
min-width: 150px;
max-width: 300px;
font-size: 14px;
padding: 8px;
max-height: 60vh;
}
.tooltip-box h2 {
font-size: 16px;
margin-bottom: 10px;
}
.tooltip-box h3 {
font-size: 14px;
margin: 8px 0;
}
.tooltip-box p {
margin: 5px 0;
font-size: 13px;
}
.tooltip-box hr {
margin: 5px 0;
}
.tooltip-box .highlight {
font-size: 13px;
}
}
/* Media queries cho điện thoại nhỏ hơn */
@media screen and (max-width: 375px) {
.tooltip-box {
width: 90vw;
min-width: 120px;
max-width: 250px;
font-size: 12px;
padding: 6px;
}
} |