32 lines
611 B
CSS
32 lines
611 B
CSS
span {
|
|
&.error {
|
|
--col: 255, 0, 0;
|
|
}
|
|
&.warning {
|
|
--col: 250, 160, 0;
|
|
}
|
|
&.info {
|
|
--col: 150, 190, 250;
|
|
}
|
|
|
|
&.with-msg {
|
|
position: relative;
|
|
&:not(:hover) {
|
|
.message {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.message {
|
|
position: absolute;
|
|
top: calc(100% + 0.2em);
|
|
left: -.2em;
|
|
background-color: black;
|
|
color: white;
|
|
padding: 0.2em 0.4em;
|
|
border-radius: .2em;
|
|
z-index: 10;
|
|
width: 300%;
|
|
}
|
|
}
|
|
} |