Use monospace font, hack, and not markdown.
Font should be made local and not remote loaded.
This commit is contained in:
		
							parent
							
								
									781921e022
								
							
						
					
					
						commit
						c73a7e3ff9
					
				
					 4 changed files with 10 additions and 8 deletions
				
			
		|  | @ -64,6 +64,7 @@ | |||
|         {% block scripts_extra %}{% endblock %} | ||||
|       {% endblock %} | ||||
| 
 | ||||
|       <link rel='stylesheet' href='//cdn.jsdelivr.net/font-hack/2.020/css/hack-extended.min.css'> | ||||
|       {% block extra_body_base %} | ||||
|         {% block extra_body %} | ||||
|         {% endblock %} | ||||
|  |  | |||
|  | @ -27,10 +27,10 @@ | |||
|     {% endif %} | ||||
| 
 | ||||
|     <h4>{% trans "Abstract" %}</h4> | ||||
|     <div class="abstract">{{ proposal.abstract_html|safe }} </div> | ||||
|     <div class="abstract monospace-text">{{ proposal.abstract_html|safe }} </div> | ||||
| 
 | ||||
|     <h4>{% trans "Private Abstract" %}</h4> | ||||
|     <div class="private_abstract">{{ proposal.private_abstract_html|safe }} </div> | ||||
|     <div class="private_abstract monospace-text">{{ proposal.private_abstract_html|safe }} </div> | ||||
| 
 | ||||
|     <h4>{% trans "Project" %}</h4> | ||||
|     <p>{{ proposal.project|safe }} </p> | ||||
|  | @ -42,16 +42,16 @@ | |||
|     <p><a href="{{ proposal.video_url|safe }}">{{ proposal.video_url|safe }}</a> </p> | ||||
| 
 | ||||
|     <h4>{% trans "Special Requirements" %}</h4> | ||||
|     <div class="special_requirements">{{ proposal.technical_requirements_html|safe }}</div> | ||||
|     <div class="special_requirements monospace-text">{{ proposal.technical_requirements_html|safe }}</div> | ||||
| 
 | ||||
|     {% for speaker in proposal.speakers %} | ||||
|       <h4>{% trans "Speaker:" %} {{ speaker.name }}</h4> | ||||
|       <h5>{% trans "Biography" %}</h5> | ||||
| 
 | ||||
|       <div class="biography">{{ speaker.biography_html|safe }} </div> | ||||
|       <div class="biography monospace-text">{{ speaker.biography_html|safe }} </div> | ||||
| 
 | ||||
|       <h5>{% trans "Experience" %}</h5> | ||||
|       <div class="biography">{{ speaker.experience_html|safe }} </div> | ||||
|       <div class="biography monospace-text">{{ speaker.experience_html|safe }} </div> | ||||
|     {% endfor %} | ||||
| 
 | ||||
|     {% can_manage proposal as can_manage_proposal %} | ||||
|  | @ -80,7 +80,7 @@ | |||
|         {% for speaker in proposal.speakers %} | ||||
|           {% if speaker.accessibility_html %} | ||||
|             <h5>{{ speaker.name }}</h5> | ||||
|             <div class="biography">{{ speaker.accessibility_html|safe }} </div> | ||||
|             <div class="biography monospace-text">{{ speaker.accessibility_html|safe }} </div> | ||||
|           {% endif %} | ||||
|         {% endfor %} | ||||
|       {% endif %} | ||||
|  |  | |||
|  | @ -55,7 +55,7 @@ | |||
|         <h3>{% trans 'Conversation with Reviewers' %}</h3> | ||||
|         {% for message in proposal.messages.all %} | ||||
|           <div class="review-box"> | ||||
|             <div class="comment"><em>{{ message.message|safe }}</em></div> | ||||
|             <div class="comment monospace-text"><em>{{ message.message|safe }}</em></div> | ||||
|             <div class="dateline"><b>{{ message.user.username }}</b> {{ message.submitted_at|timesince }} ago</div> | ||||
|           </div> | ||||
|           <br /> | ||||
|  |  | |||
|  | @ -1,2 +1,3 @@ | |||
| .label-required:after { content: '*'; } | ||||
| textarea { font-family: Hack, monospace; } | ||||
| textarea, .monospace-text { font-family: Hack, monospace; } | ||||
| .monospace-text { white-space: pre; } | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Sachi King
						Sachi King