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

Popular posts from this blog

Capture and play voice with Asterisk ARI -

c++ - Can not find the "fiostream.h" file -

java - Why database contraints in HSQLDB are only checked during a commit when using transactions in Hibernate? -