forked from markus/AMPERION_Webpage
66 lines
1 KiB
SCSS
66 lines
1 KiB
SCSS
/*=================================================================
|
|
Item counter section
|
|
==================================================================*/
|
|
|
|
.counter {
|
|
padding: 100px 0;
|
|
|
|
.counter-title {
|
|
margin-bottom: 50px;
|
|
|
|
h2 {
|
|
color: $black;
|
|
margin-bottom: 20px;
|
|
font-size: 42px;
|
|
font-weight: 600;
|
|
line-height: 35px;
|
|
}
|
|
|
|
p {
|
|
color: lighten( $black, 33.3 );
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.counters-item {
|
|
padding-bottom: 30px;
|
|
color: lighten( $black, 26.6 );
|
|
position: relative;
|
|
|
|
&.kill-border:before {
|
|
background: none;
|
|
}
|
|
|
|
&:before {
|
|
background: darken( $light, 7.843137254901947);
|
|
content: "";
|
|
margin-top: -27.5px;
|
|
height: 55px;
|
|
width: 1px;
|
|
position: absolute;
|
|
right: -15px;
|
|
top: 50%;
|
|
}
|
|
|
|
>div {
|
|
margin: 6px 0;
|
|
}
|
|
|
|
span {
|
|
display: inline;
|
|
font-size: 35px;
|
|
line-height: 50px;
|
|
}
|
|
|
|
i {
|
|
font-size: 40px;
|
|
display: inline-block;
|
|
color: $color-primary;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 17px;
|
|
margin: 0;
|
|
}
|
|
}
|