From f72b10a7552e66d05df2e9d42f3e773459445cc9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Th=C3=A9ophile=20Bastian?= <contact@tobast.fr>
Date: Thu, 3 Feb 2022 13:18:32 +0100
Subject: [PATCH] Un-track style.css

Now built by pre-build.sh
---
 .gitignore           |   1 +
 static/css/style.css | 120 -------------------------------------------
 2 files changed, 1 insertion(+), 120 deletions(-)
 delete mode 100644 static/css/style.css

diff --git a/.gitignore b/.gitignore
index e7e3002..c021477 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 .hugo_build.lock
 public
+static/css/style.css
diff --git a/static/css/style.css b/static/css/style.css
deleted file mode 100644
index 31909c0..0000000
--- a/static/css/style.css
+++ /dev/null
@@ -1,120 +0,0 @@
-@import url("fonts.css");
-@import url("../blueimp/css/blueimp-gallery.min.css");
-html {
-  box-sizing: border-box; }
-
-*, *:before, *:after {
-  box-sizing: inherit; }
-
-html {
-  background-color: white;
-  color: #555;
-  height: 100%; }
-
-body {
-  font-family: Open Sans,Arial;
-  font-size: 12pt;
-  line-height: 1.4;
-  text-align: justify;
-  margin: 0;
-  padding: 0;
-  min-height: 100%;
-  display: flex;
-  flex-direction: column; }
-
-#headbg {
-  background-image: url("../img/headbg.jpg");
-  /* Full height */
-  height: 100vh;
-  /* Center and scale the image nicely */
-  background-position: center;
-  background-repeat: no-repeat;
-  background-size: cover; }
-
-#head {
-  position: absolute;
-  top: 20%;
-  width: 100%;
-  height: 100px;
-  text-align: center;
-  font: 400 65px/1.8 sans-serif;
-  color: white;
-  letter-spacing: 10px;
-  z-index: 100; }
-  #head a {
-    color: white;
-    text-decoration: none; }
-  #head.headerbar {
-    position: fixed;
-    top: 0px;
-    background-color: #b9a58d;
-    height: 75px;
-    font-size: 45px;
-    transition: none .224s ease-in-out;
-    transition-property: background-color, font-size, height; }
-
-#content {
-  margin: 30px 10px; }
-  @media (min-width: 650px) {
-    #content {
-      margin: 30px 20px; } }
-footer {
-  font-size: 0.7em;
-  display: flex;
-  justify-content: flex-end;
-  align-items: center;
-  flex-direction: column;
-  margin: 10px 20px;
-  margin-top: auto; }
-  @media (min-width: 650px) {
-    footer {
-      flex-direction: row; } }
-  footer > div {
-    margin: 5px 15px; }
-    @media (min-width: 650px) {
-      footer > div {
-        margin: 0 15px; } }
-.galleryblock .blockhead {
-  display: flex;
-  flex-direction: column;
-  margin: 15px 0;
-  gap: 5px;
-  margin-top: 35px; }
-  .galleryblock .blockhead h2 {
-    margin: 0; }
-  .galleryblock .blockhead .gallerydate {
-    align-self: flex-end; }
-  @media (min-width: 650px) {
-    .galleryblock .blockhead {
-      flex-direction: row;
-      justify-content: space-between;
-      align-items: center; }
-      .galleryblock .blockhead .gallerydate {
-        align-self: auto; } }
-.galleryblock .gallery {
-  display: flex;
-  align-items: stretch;
-  flex-direction: column;
-  gap: 15px; }
-  @media (min-width: 400px) {
-    .galleryblock .gallery {
-      display: grid;
-      grid-template-columns: repeat(2, 1fr); } }
-  @media (min-width: 700px) {
-    .galleryblock .gallery {
-      grid-template-columns: repeat(3, 1fr); } }
-  @media (min-width: 1000px) {
-    .galleryblock .gallery {
-      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); } }
-  @media (min-width: 1000px) {
-    .galleryblock .gallery a {
-      max-width: 350px; } }
-  .galleryblock .gallery img {
-    width: 100%;
-    height: 100%;
-    object-fit: cover;
-    border-radius: 10px;
-    aspect-ratio: 1/1; }
-
-a, a:visited {
-  color: #07a; }