added fixed font to blog_edit textaera

This commit is contained in:
2023-10-22 09:22:33 +02:00
parent 51169bb96b
commit 3efce74696
4 changed files with 7 additions and 2 deletions

Binary file not shown.

View File

@@ -72,6 +72,9 @@ h5 {
border: none;
border-radius: 0;
}
.monospace-font {
font-family: Monaco, "Courier New", Courier, monospace;
}
.thumbnail p {
margin-top: 15px;
color: #555;

View File

@@ -16,7 +16,7 @@
{% endfor %}
<div class="form-group">
<label class="required-field" for="body">{{ form.body.label }}</label>
{{ form.body(class_='form-control', cols="35", rows="20") }}
{{ form.body(class_='form-control monospace-font', cols="35", rows="20") }}
</div>
<div class="form-group">

View File

@@ -18,13 +18,15 @@ requires = [
'pyramid_retry',
'pyramid_layout',
'pyramid_tm',
'SQLAlchemy',
'SQLAlchemy==1.4.49',
'transaction',
'zope.sqlalchemy',
'wtforms', # form library 2.2.1
'webhelpers2', # various web building related helpers 2.0
'passlib',
'python-magic',
'markdown',
'urllib3==1.26',
'yfinance',
]