1

Some finishing touches on styles

This commit is contained in:
Evan Pratten 2021-08-21 11:18:06 -04:00
parent e3abcfbe60
commit 7a5d4b86a1
3 changed files with 62 additions and 2 deletions

View File

@ -2,7 +2,7 @@
layout: page
title: "Building a mini maven server"
description: "Project overview: The Ultralight maven server"
date: 2020-09-17 11:00:00
date: 2020-09-17
written: 2020-09-05
tags: project github maven
excerpt: >-

View File

@ -15,6 +15,16 @@ a {
text-decoration: none;
}
.yt-embed {
width: 100%;
height: 400px;
iframe {
width: 100%;
height: 100%;
}
}
.container {
max-width: 700px;
margin: auto;
@ -23,15 +33,22 @@ a {
.profile-card {
margin-top: 30px;
margin-bottom: 30px;
margin-left: auto;
margin-right: auto;
.row {
width: max-content;
max-width: 100vw;
max-width: 95vw;
margin: auto;
overflow-wrap: normal;
.headshot-container {
display: inline-block;
max-width: 150px;
@media only screen and (max-width: 377px) {
display: block;
margin: auto;
}
img {
width: 100%;
}

43
templates/page.html Normal file
View File

@ -0,0 +1,43 @@
{% extends "base.html" %}
{% block title %}
{{page.title}}
{% endblock title %}
{% block head %}
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/github-markdown-css/4.0.0/github-markdown.min.css"
integrity="sha512-Oy18vBnbSJkXTndr2n6lDMO5NN31UljR8e/ICzVPrGpSud4Gkckb8yUpqhKuUNoE+o9gAb4O/rAxxw1ojyUVzg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
{{ super() }}
{% if page.extra.uses_katex %}
<script src='https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-MML-AM_CHTML' async></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']], displayMath: [ ['$$','$$'], ['\[','\]'] ]}});
</script>
{% endif %}
{% endblock head %}
{% block profile %}
<div class="row">
<div class="headshot-container">
<img src="https://avatars.githubusercontent.com/u/21065412" alt="Headshot" style="height:50px;">
</div>
<div class="text-container">
<h1>{{config.extra.name}}</h1>
<p>
{{config.extra.profession}}
</p>
</div>
</div>
{% endblock profile %}
{% block content %}
<br><br>
<article class="markdown-body">
<h1>{{page.title}}</h1>
<div style="text-align: justify;">
{{page.content | safe}}
</div>
</article>
{% endblock content %}