hswro_org/_sass/components/_feature.scss

31 lines
529 B
SCSS
Raw Normal View History

2018-12-09 07:21:01 +00:00
.feature {
height: 100%;
2020-08-23 10:01:06 +00:00
border: 1px solid $white-offset;
border-radius: 3px;
2018-12-09 07:21:01 +00:00
padding: 20px;
background-color: #ffffff;
display: flex;
align-items: center;
flex-direction: column;
text-align: center;
.feature-image {
flex: 0 0 auto;
display: flex;
text-align: center;
2025-02-17 19:46:25 +00:00
margin-bottom: 0;
2018-12-09 07:21:01 +00:00
}
img {
width: 100%;
height: auto;
}
.feature-title {
2025-02-17 19:46:25 +00:00
font-width: bold;
margin-top: 0;
color: $primary;
2018-12-09 07:21:01 +00:00
}
.feature-content {
margin-bottom: 0;
margin-top: auto;
}
}