refactor gradido template button, hover

This commit is contained in:
ogerly 2022-05-24 08:37:37 +02:00
parent 78021a401f
commit 44f9c96d95

View File

@ -41,17 +41,19 @@ a,
} }
.btn-gradido { .btn-gradido {
background-image: linear-gradient(146deg, rgb(220 167 44) 50%, rgb(197 141 56 / 100%) 100%); display: inline-block;
background-size: auto; padding: 1em 3em;
background-position: 0% 0%; letter-spacing: 0.05em;
background-repeat: repeat; color: #fff;
border-style: none; transition: all 0.5s ease;
box-shadow: 10px 10px 50px 10px rgb(56 56 56 / 31%); background: rgb(249,205,105);
color: #fff; background: linear-gradient(135deg, rgba(249,205,105,1) 2%, rgba(197,141,56,1) 55%);
box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
border-radius:26px;
} }
.btn-gradido:hover { .btn-gradido:hover {
color: #212529; box-shadow: 0 5px 10px rgba(0,0,0,0.2);
} }
.btn-gradido:focus { .btn-gradido:focus {
@ -61,6 +63,11 @@ a,
.btn-outline-gradido { .btn-outline-gradido {
color: rgb(140 121 88); color: rgb(140 121 88);
border: 1px solid #f5b805; border: 1px solid #f5b805;
box-shadow: 10px 10px 50px 10px rgb(56 56 56 / 31%);
}
.btn-outline-gradido:hover {
box-shadow: 10px 10px 50px 10px rgb(56 56 56 / 0%);
} }
.form-control, .form-control,