|
|
@ -1,7 +1,7 @@
|
|
|
|
<style scoped>
|
|
|
|
<style scoped>
|
|
|
|
.hero-scoped {
|
|
|
|
.hero-scoped {
|
|
|
|
background:
|
|
|
|
background:
|
|
|
|
{% if hero_image %}url({{ hero_image.url }}) {{ hero_position }}% bottom/{{ hero_size }} no-repeat{% endif %}
|
|
|
|
{% if hero_image %}url({{ hero_image.url }}) {{ hero_horizontal_position }}% {{ hero_vertical_position }}%/{{ hero_size }} no-repeat{% endif %}
|
|
|
|
{% if hero_background_image %}, url({{ hero_background_image.url }}) repeat{% endif %}
|
|
|
|
{% if hero_background_image %}, url({{ hero_background_image.url }}) repeat{% endif %}
|
|
|
|
{% if hero_background_color %} {{ hero_background_color }}{% endif %};
|
|
|
|
{% if hero_background_color %} {{ hero_background_color }}{% endif %};
|
|
|
|
height: {{ hero_height }}px;
|
|
|
|
height: {{ hero_height }}px;
|
|
|
@ -10,7 +10,7 @@
|
|
|
|
@media (max-height: 1000px), (max-width: 700px) {
|
|
|
|
@media (max-height: 1000px), (max-width: 700px) {
|
|
|
|
.hero-scoped {
|
|
|
|
.hero-scoped {
|
|
|
|
background:
|
|
|
|
background:
|
|
|
|
{% if hero_image_small %}url({{ hero_image_small.url }}) {{ hero_position }}% bottom/{{ hero_size }} no-repeat{% endif %}
|
|
|
|
{% if hero_image_small %}url({{ hero_image_small.url }}) {{ hero_horizontal_position }}% {{ hero_vertical_position }}%/{{ hero_size }} no-repeat{% endif %}
|
|
|
|
{% if hero_background_image_small %}, url({{ hero_background_image_small.url }}) repeat{% endif %}
|
|
|
|
{% if hero_background_image_small %}, url({{ hero_background_image_small.url }}) repeat{% endif %}
|
|
|
|
{% if hero_background_color %} {{ hero_background_color }}{% endif %};
|
|
|
|
{% if hero_background_color %} {{ hero_background_color }}{% endif %};
|
|
|
|
height: {{ hero_height_small }}px;
|
|
|
|
height: {{ hero_height_small }}px;
|
|
|
|