Feat: Added Hover button in Branding page

This commit is contained in:
eniamza 2020-06-10 20:43:02 +06:00
parent 6889a419ed
commit a4036a95eb
2 changed files with 28 additions and 2 deletions

View file

@ -56,7 +56,7 @@
<hr class="heading">
<p class="lead">Branding Assets IG</p>
<div class="btn-group mt-4" role="group" aria-label="Callout buttons">
<a type="button" class="btn lbry-dark text-white btn-lg" href="#!">LBRY Asset Pack</a>
<a type="button" class="button button1" href="#!">LBRY Asset Pack</a>
</div>
</div>
</div>

View file

@ -130,4 +130,30 @@ nav {
.dropdown-item {
color: white;
}
/* /Special Branded Color Classes*/
/* /Special Branded Color Classes*/
/*Hovering Button Style*/
.button {
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
transition-duration: 0.2s;
cursor: pointer;
}
.button1 {
background-color: transparent;
color: black;
border: 2px solid #00303C;
}
.button1:hover {
background-color: #00303C;
color: #28D4E2;
}
.button1 {border-radius: 13px;}
/*Hovering Button Style*/