umami/components/WebsiteList.module.css

33 lines
504 B
CSS
Raw Normal View History

2020-07-30 08:25:52 +02:00
.container > div {
2020-08-04 03:12:28 +02:00
padding-bottom: 30px;
border-bottom: 1px solid #e1e1e1;
2020-07-30 08:25:52 +02:00
margin-bottom: 30px;
}
2020-08-04 03:12:28 +02:00
.container > div:last-child {
border-bottom: 0;
margin-bottom: 0;
}
.container a {
position: relative;
color: #2c2c2c;
text-decoration: none;
}
.container a:before {
content: '';
position: absolute;
bottom: -2px;
width: 0;
height: 2px;
background: #2680eb;
opacity: 0.5;
transition: width 100ms;
}
.container a:hover:before {
width: 100%;
transition: width 100ms;
}