2022-06-27 14:09:44 +00:00
|
|
|
.hero {
|
|
|
|
height: 700px;
|
|
|
|
background-image: url({{ .hero.background }}) !important;
|
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hero-icon-container {
|
|
|
|
padding: 1rem;
|
2022-06-29 11:03:51 +00:00
|
|
|
margin: auto;
|
2022-06-27 14:09:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.hero-button {
|
|
|
|
background-color: {{ .color.primary }};
|
|
|
|
color: white;
|
|
|
|
border: 2px solid {{ .color.primary }};
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 0.5rem 1.5rem;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 1rem;
|
|
|
|
margin-top: 1rem;
|
|
|
|
}
|