13 lines
289 B
CSS
13 lines
289 B
CSS
{% load static %}
|
|
|
|
body {
|
|
{% if background.image %}
|
|
background-image: url('{{background.image.url}}');
|
|
{% endif %}
|
|
{% if not background.repeat %}
|
|
background-repeat: no-repeat;
|
|
{% endif %}
|
|
{% if background.color %}
|
|
background-color: {{background.color}} !important;
|
|
{% endif %}
|
|
} |