add button variant gradido, outline-gradido

This commit is contained in:
ogerly 2022-03-29 11:09:45 +02:00
parent bf76e3e128
commit cdc9f938b8

View File

@ -1,3 +1,27 @@
/* Navbar */
.navbar-light .navbar-nav .nav-link {
color: #047006;
}
/* Button */
.btn-gradido {
background-image: linear-gradient(to right bottom, rgba(241,242,11,1) 0%, rgba(248,161,27,1) 99%);
background-size: auto;
background-position: 0% 0%;
background-repeat: repeat;
border-radius: 40px 40px 40px 40px;
border-style: none;
}
.btn-gradido:hover {
color: #212529;
}
.btn-outline-gradido {
color: rgb(248,161,27);
border: 1px solid #F5B805;
border-radius: 40px 40px 40px 40px;
}
.alert-success {
background-color: #d4edda;
border-color: #c3e6cb;