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

ruby - Trying to change last to "x"s to 23 -

jquery - Clone last and append item to closest class -

c - Unrecognised emulation mode: elf_i386 on MinGW32 -