Buttons
by dhavaljani
HTML
<script src="https://code.jquery.com/jquery-3.4.1.slim.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.css">
<div class="card">
<div class="card-body">
<p class="card-text">Biogen Support Services is a support program that provides a variety of financial and insurance assistance options. These resources can help your patients start and continue on Aduhelm</p>
<button type="button" class="btn btn-primary btn-block">Begin Onboarding</button>
</div>
<div class="card-body">
<button type="button" class="btn btn-info btn-block">Begin Onboarding</button>
<button type="button" class="btn btn-outline-primary btn-block">Primary</button>
</div>
</div>
CSS
.row {
background: #f8f9fa;
margin-top: 20px;
}
.col {
border: solid 1px #6c757d;
padding: 10px;
}
/* width: 640px;
height: 360px;*/
.card{
margin: 20px;
width: 413px;
height: 555px;
font-family: "OpenSans", sans-serif;
}
.btn {
height: 56px;
font-weight: 500;
font-size: 14px;
border-radius: 4px;
text-transform: Uppercase;
opacity: 1;
transition: 0.3s;
}
.btn:hover{
opacity: 1.25;
transition: 0.5s;
}
/*------------------------------------
- COLOR primary
------------------------------------*/
.alert-primary {
color: #000000;
background-color: #1fbdff;
border-color: #0ab7ff;
}
.alert-primary hr {
border-top-color: #00a9f0;
}
.alert-primary .alert-link {
color: #000000;
}
.badge-primary {
color: #fff;
background-color: #003a52;
}
.badge-primary[href]:hover, .badge-primary[href]:focus {
color: #fff;
background-color: #00151f;
}
.bg-primary {
background-color: #003a52 !important;
}
a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
background-color: #00151f !important;
}
.border-primary {
border-color: #003a52 !important;
}
.btn-primary {
color: #fff;
background-color: #003a52;
border-color: #003a52;
}
.btn-primary:hover {
color: #fff;
background-color: #00151f;
border-color: #00151f;
}
.btn-primary:focus, .btn-primary.focus {
box-shadow: 0 0 0 0.2rem rgba(0, 58, 82, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
color: #fff;
background-color: #003a52;
border-color: #003a52;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
color: #fff;
background-color: #00151f;
border-color: #000b0f;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(0,...