52 lines
928 B
SCSS
52 lines
928 B
SCSS
|
|
/*=================================================================
|
||
|
|
Pricing section
|
||
|
|
==================================================================*/
|
||
|
|
|
||
|
|
.pricing-table {
|
||
|
|
.pricing-item {
|
||
|
|
padding: 40px 20px;
|
||
|
|
background: $white;
|
||
|
|
box-shadow: 0 8px 15px 0 rgba(5, 57, 106, .06);
|
||
|
|
|
||
|
|
a.btn-main {
|
||
|
|
text-transform: uppercase;
|
||
|
|
margin-top: 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
li {
|
||
|
|
font-weight: 400;
|
||
|
|
padding: 6px 0;
|
||
|
|
color: darken( $light, 57.64);
|
||
|
|
|
||
|
|
i {
|
||
|
|
margin-right: 6px;
|
||
|
|
color: $color-primary;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.price-title {
|
||
|
|
padding: 30px 0 20px;
|
||
|
|
|
||
|
|
>h3 {
|
||
|
|
font-weight: 700;
|
||
|
|
margin: 0 0 5px;
|
||
|
|
font-size: 15px;
|
||
|
|
text-transform: uppercase;
|
||
|
|
}
|
||
|
|
|
||
|
|
>p {
|
||
|
|
font-size: 14px;
|
||
|
|
font-weight: 400;
|
||
|
|
line-height: 18px;
|
||
|
|
margin-top: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.value {
|
||
|
|
color: $color-primary;
|
||
|
|
font-size: 50px;
|
||
|
|
padding: 10px 0;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|