salvation
Version:
A pure JS form validation plugin
49 lines (44 loc) • 1 kB
CSS
.salvation-warning {
color: #de1212;
font-size: 13px;
}
[data-hint] {
position: relative;
}
[data-hint]::before {
content: "";
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid #1A1A1A;
display: none;
font-size: 0;
line-height: 0;
position: absolute;
top: 30px;
left: 35px;
z-index: 8;
width: 0;
height: 0;
}
[data-hint]::after {
display: none;
background: #1A1A1A;
color: #FFFFFF;
content: attr(data-hint);
font-size: 0.75em;
position: absolute;
height: 18px;
line-height: 18px;
top: 35px;
left: 0px;
padding: 5px 8px;
z-index: 9;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
white-space: nowrap;
word-wrap: normal;
}
[data-hint]:before, [data-hint]:after {
display: block;
}