learning_cesium/custom/tooltip/tooltip.css

33 lines
614 B
CSS
Raw Permalink Normal View History

2024-03-19 18:06:25 +08:00
/* tooltip 样式 */
.tooltipdiv-inner {
padding: 3px 8px;
}
/* 向左 */
.toolTip-left {
position: absolute;
width: 300px;
min-height: 80px;
border: 4px solid rgba(19, 159, 255, 1);
border-radius: 20px;
background-color: rgba(30, 49, 74, 0.6);
}
.toolTip-left:before {
content: "";
display: block;
position: absolute;
left: -20px;
top: 50%;
transform: translateY(-50%);
border-top: 20px solid transparent;
border-bottom: 20px solid transparent;
border-right: 20px solid rgba(19, 159, 255, 1);
}
/* 内容样式 */
.con {
font-size: 28px;
color: #ffff;
line-height: 80px;
}