13 lines
232 B
SCSS
Raw Normal View History

2019-05-01 19:59:32 +02:00
#home{
.content{
p:last-child{
a:hover{
color: white;
background-color: $green;
2019-05-27 17:03:03 +02:00
-webkit-transition: background-color 0.3s ease;
2019-05-01 19:59:32 +02:00
transition: background-color 0.3s ease;
}
}
}
}