commit 930747c9d765b0909a40ef8cccdc19dd5dbc2a08 Author: Julien CLEMENT Date: Thu Dec 9 12:40:20 2021 +0100 feat: add Dockerfile and static html Signed-off-by: Julien CLEMENT diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..8aa8c29 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM nginx:1.21.4 + +LABEL maintainer="Julien CLEMENT " + +EXPOSE 80 + +COPY html /usr/share/nginx/html diff --git a/html/assets/style.css b/html/assets/style.css new file mode 100644 index 0000000..f62890b --- /dev/null +++ b/html/assets/style.css @@ -0,0 +1,123 @@ +* { + margin: 0; + padding: 0; +} + +body, html { + height: 100%; +} + +.sr-only { + position:absolute; + left:-10000px; + top:auto; + width:1px; + height:1px; + overflow:hidden; +} + +::-moz-selection { + color: #000b13; + background: #c42337; +} + +::selection { + color: #040404; + background: #d7d9ce; +} + +body { + background-color: #040404; + color: #119da4; + font-family: monospace; + font-size: 1.0em; + + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; + + max-width: 800px; + margin: auto; +} + +header { + text-align: center; + font-size: 1.2em; +} + +header h1 { + font-size: 4em; +} + +header h2 { + font-size: 2em; +} + +header img { + border-radius: 100%; + width: 220px; + margin: 10px; +} + +header .socials { + margin-top: 5px; + list-style-type: none; + font-size: 1.4em; +} + +header .socials li { + display: inline-block; +} + +header .socials a { + color: inherit; + text-decoration: none; +} + +header .socials a:hover { + color: #d7d9ce; +} + +.articles { + margin-top: 50px; + font-size: 1.3em; +} + +.articles h3 { + font-size: 1em; + font-weight: 800; + color: #f4b65c; +} + +.articles ul { + list-style-type: none; +} + +.articles li { + margin-top: 0.4em; + margin-bottom: 0.4em; +} + +.articles a { + color: #7f8589; + text-decoration: none; +} + +.articles a:hover { + color: #c42337; +} + +article h1 { + color: #f4b65c; +} + +article { + font-size: 1.3em; +} + +article p { + padding-top: 3px; + padding-bottom: 3px; + text-align: justify; +} diff --git a/html/blog/article.html b/html/blog/article.html new file mode 100644 index 0000000..9d72661 --- /dev/null +++ b/html/blog/article.html @@ -0,0 +1,17 @@ + + + + Juju + + + + + + +
+

Article

+

Test

+
+ + + diff --git a/html/blog/index.html b/html/blog/index.html new file mode 100644 index 0000000..372f907 --- /dev/null +++ b/html/blog/index.html @@ -0,0 +1,17 @@ + + + + Juju + + + + + + +

Articles

+
  • + article +
  • + + + diff --git a/html/favicon.ico b/html/favicon.ico new file mode 100644 index 0000000..77703d7 Binary files /dev/null and b/html/favicon.ico differ diff --git a/html/index.html b/html/index.html new file mode 100644 index 0000000..a43b3f0 --- /dev/null +++ b/html/index.html @@ -0,0 +1,53 @@ + + + + + Juju + + + + + + +
    + Photo of myself +

    Juju

    + +
    + + + diff --git a/html/juju.jpg b/html/juju.jpg new file mode 100644 index 0000000..fc17b5a Binary files /dev/null and b/html/juju.jpg differ