1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
/* Getting started index page */
.intro-card {
background: #fff;
border-radius: 0;
padding: 30px 10px 10px 10px;
margin: 10px 0px;
}
.intro-card .card-text {
margin: 20px 0px;
/*min-height: 150px; */
}
.custom-button {
background-color: #dcdcdc;
border: none;
color: #484848;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 0.9rem;
border-radius: 0.5rem;
max-width: 220px;
padding: 0.5rem 0rem;
}
.custom-button a {
color: #484848;
}
.custom-button p {
margin-top: 0;
margin-bottom: 0rem;
color: #484848;
}
|