hack-o-lantern/assets/style.css

23 lines
309 B
CSS
Raw Normal View History

2023-10-21 19:00:17 -04:00
.btn{
padding: 10px;
border-radius: 5px;
opacity: 0.8;
transition: 0.5s ease;
margin: 5px;
font-weight: 600;
color: white;
}
.btn:hover{
padding: 10px;
border-radius: 5px;
opacity: 1;
}
.btn-orange{
background: orange;
}
.btn-blue{
background: deepskyblue;
}