28 lines
648 B
SCSS
28 lines
648 B
SCSS
.features-2 {
|
|
color: #ffffff;
|
|
font-weight: 300;
|
|
|
|
.text-box {
|
|
max-width: 500px;
|
|
margin-left: 80px;
|
|
}
|
|
|
|
.bg-info-gradiant {
|
|
background: #188ef4;
|
|
background: -webkit-linear-gradient(legacy-direction(to right), #188ef4 0%, #316ce8 100%);
|
|
background: -webkit-gradient(linear, left top, right top, from(#188ef4), to(#316ce8));
|
|
background: -webkit-linear-gradient(left, #188ef4 0%, #316ce8 100%);
|
|
background: -o-linear-gradient(left, #188ef4 0%, #316ce8 100%);
|
|
background: linear-gradient(to right, #188ef4 0%, #316ce8 100%);
|
|
}
|
|
.btn-md {
|
|
padding: 15px 45px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
color: #3e4555;
|
|
}
|
|
|
|
}
|