diff options
| -rw-r--r-- | docker/nginx/sites/www/index.html | 13 | ||||
| -rw-r--r-- | docker/nginx/sites/www/src/style.css | 8 | 
2 files changed, 21 insertions, 0 deletions
| diff --git a/docker/nginx/sites/www/index.html b/docker/nginx/sites/www/index.html index 0e96410..4165620 100644 --- a/docker/nginx/sites/www/index.html +++ b/docker/nginx/sites/www/index.html @@ -73,6 +73,19 @@          </li>        </ul>      </section> +    <section> +      <h2>Always Remember</h2> +      <figure class="citation"> +        <blockquote> +          <p>Die Philosophen haben die Welt nur verschieden interpretiert, es kömmt aber darauf an, sie zu verändern.</p> +          <p><small>Translated from German:</small> +            The philosophers have only interpreted the world in various ways, the point is to change it.</p> +        </blockquote> +        <figcaption> +          <cite>Karl Marx, Theses on Feuerbach (1845)</cite> +        </figcaption> +      </figure> +    </section>      <hr/>      <footer>        <p id="license"> diff --git a/docker/nginx/sites/www/src/style.css b/docker/nginx/sites/www/src/style.css index 9daad94..64757a6 100644 --- a/docker/nginx/sites/www/src/style.css +++ b/docker/nginx/sites/www/src/style.css @@ -121,6 +121,14 @@ body[data-emotion="angry"] .slogan.angry {    font-size: 0.8em;  } +.citation { +  margin: auto; +} + +.citation figcaption { +  text-align: right; +} +  #license a {    font-family: initial;    text-decoration: none; | 
