From 018c0bb5c7594b3f410ace7bda86b93087f8868f Mon Sep 17 00:00:00 2001 From: cangui Date: Sun, 6 Oct 2024 09:48:13 +0200 Subject: [PATCH] first comit --- .idea/.gitignore | 8 ++++++++ Dockerfile | 13 +++++++++++++ app-ads.txt | 1 + index.html | 19 +++++++++++++++++++ styles.css | 28 ++++++++++++++++++++++++++++ 5 files changed, 69 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 Dockerfile create mode 100644 app-ads.txt create mode 100644 index.html create mode 100644 styles.css diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..596a278 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +# Utiliser une image de base légère +FROM nginx:alpine + +# Copier la page HTML dans le répertoire approprié de Nginx +COPY index.html /usr/share/nginx/html/ +COPY styles.css /usr/share/nginx/html/ +COPY app-ads.txt /usr/share/nginx/html/ + +# Exposer le port 80 +EXPOSE 80 + +# Démarrer Nginx +CMD ["nginx", "-g", "daemon off;"] diff --git a/app-ads.txt b/app-ads.txt new file mode 100644 index 0000000..2c8ff59 --- /dev/null +++ b/app-ads.txt @@ -0,0 +1 @@ +google.com, pub-6072599166221982, DIRECT, f08c47fec0942fa0 \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..a002e83 --- /dev/null +++ b/index.html @@ -0,0 +1,19 @@ + + + + + + Canguidev + + +
+
+
+

Maintenance mode

+

Sorry for the inconvenience.
Our website is currently undergoing scheduled maintenance.

+

Thank you for your understanding.

+
+
+
+ + \ No newline at end of file diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..e3739c7 --- /dev/null +++ b/styles.css @@ -0,0 +1,28 @@ +html { width: 100%; height: 100%; } +body { text-align: center; margin: 0px; padding: 0px; height: 100%; color: #fff; font-family: sans-serif; + background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB); + background-size: 400% 400%; + -webkit-animation: Gradient 15s ease infinite; + -moz-animation: Gradient 15s ease infinite; + animation: Gradient 15s ease infinite;} +.vh { height: 100%; align-items: center; display: flex; } +.vh > div { width: 100%; text-align: center; vertical-align: middle; } +img { max-width: 100%; } +.wrap {text-align: center;} +.wrap h1 {font-size: 30px;font-weight: 700;margin: 0 0 90px;} +.wrap h2 {font-size: 24px;font-weight: 400;line-height: 1.6;margin: 0 0 80px;} +@-webkit-keyframes Gradient { + 0% {background-position: 0% 50%} + 50% {background-position: 100% 50%} + 100% {background-position: 0% 50%} +} +@-moz-keyframes Gradient { + 0% {background-position: 0% 50%} + 50% {background-position: 100% 50%} + 100% {background-position: 0% 50%} +} +@keyframes Gradient { + 0% {background-position: 0% 50%} + 50% {background-position: 100% 50%} + 100% {background-position: 0% 50%} +} \ No newline at end of file