css - Flask-Bootstrap custom theme -
i made flask app flask-bootstrap. using virtualenv well. find stylesheet edit customize colors? or there way have custom colors?
add custom colors css file, e.g. mystyle.css
, put under static folder, add custom css file template.
{% block styles %} {{super()}} <link rel="stylesheet" href="{{url_for('.static', filename='mystyle.css')}}"> {% endblock %}
check documentation here: adding custom css file:
Comments
Post a Comment