wf4/assets/css/technology.css
2024-05-30 08:52:28 +02:00

28 lines
488 B
CSS

.Technology {
position: relative;
align-items: center;
&.m img {
height: 30px;
}
&.l img {
height: 50px;
}
& span {
scale: 0;
position: absolute;
top: -3rem;
width: max-content;
border: 1px solid var(--color-white);
border-radius: 999px;
background-color: var(--color-black);
padding: .5em 1.5rem;
transition: 150ms;
}
&:hover span {
scale: 1;
}
}