have specific styles @import the base styles

this clarifies the value of what was formerly "style.css" a bit, and
also opens the door for potential styles that don't inherit the base
styling at all
This commit is contained in:
Brian S. Stephan 2021-03-07 23:09:58 -06:00
parent d89fd151ca
commit 06d948a709
4 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,5 @@
@import '/static/css/base.css';
html {
color: #CCC;
}

View File

@ -1,3 +1,5 @@
@import '/static/css/base.css';
html {
color: #222;
}

View File

@ -7,7 +7,6 @@
<meta property="og:url" content="{{ base_url }}">
<meta name="twitter:card" content="summary_large_image">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename=user_style) }}">
<link rel="icon" href="{% if config.FAVICON %}{{ config.FAVICON }}{% else %}{{ url_for('static', filename='img/favicon.png') }}{% endif %}">