48 lines
921 B
SCSS
48 lines
921 B
SCSS
// main: ../main.scss
|
|
/*--------------------------------------------------------------
|
|
# Services Section
|
|
--------------------------------------------------------------*/
|
|
.services {
|
|
.service-item {
|
|
background-color: var(--surface-color);
|
|
box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
|
|
padding: 50px 30px;
|
|
transition: all ease-in-out 0.4s;
|
|
height: 100%;
|
|
|
|
.icon {
|
|
margin-bottom: 10px;
|
|
|
|
i {
|
|
color: var(--accent-color);
|
|
font-size: 36px;
|
|
transition: 0.3s;
|
|
}
|
|
}
|
|
|
|
h4 {
|
|
font-weight: 700;
|
|
margin-bottom: 15px;
|
|
font-size: 20px;
|
|
|
|
a {
|
|
color: var(--heading-color);
|
|
transition: ease-in-out 0.3s;
|
|
}
|
|
}
|
|
|
|
p {
|
|
line-height: 24px;
|
|
font-size: 14px;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
&:hover {
|
|
transform: translateY(-10px);
|
|
|
|
h4 a {
|
|
color: var(--accent-color);
|
|
}
|
|
}
|
|
}
|
|
} |