From 751e38232c994d734ef95d9f663d0c97cd66a47d Mon Sep 17 00:00:00 2001 From: Allan Cueff Date: Sat, 28 Sep 2024 13:29:09 +0200 Subject: [PATCH] icons and animations --- envelope-solid.svg | 1 + github-brands-solid.svg | 1 + globe-solid.svg | 1 + index.html | 22 ++++++++++++++----- square-instagram-brands-solid.svg | 1 + style.css | 35 +++++++++++++++++++++++++++++++ 6 files changed, 56 insertions(+), 5 deletions(-) create mode 100644 envelope-solid.svg create mode 100644 github-brands-solid.svg create mode 100644 globe-solid.svg create mode 100644 square-instagram-brands-solid.svg diff --git a/envelope-solid.svg b/envelope-solid.svg new file mode 100644 index 0000000..6385b0a --- /dev/null +++ b/envelope-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/github-brands-solid.svg b/github-brands-solid.svg new file mode 100644 index 0000000..cf245cc --- /dev/null +++ b/github-brands-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/globe-solid.svg b/globe-solid.svg new file mode 100644 index 0000000..c2af6c6 --- /dev/null +++ b/globe-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/index.html b/index.html index 3203a52..45f2103 100644 --- a/index.html +++ b/index.html @@ -14,13 +14,25 @@
-

https://modelec.club

-

https://instagram.com/modelec_isen

-

https://github.com/modelec

-

contact@modelec.club

+ + +

modelec.club

+
+ + +

modelec_isen

+
+ + +

modelec

+
+ + +

contact@modelec.club

+

Nos partenaires:

Odyssey BDE

-

ISEN Nantes

+

AI ISEN

MercuryCloud

diff --git a/square-instagram-brands-solid.svg b/square-instagram-brands-solid.svg new file mode 100644 index 0000000..58d354d --- /dev/null +++ b/square-instagram-brands-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/style.css b/style.css index cfe1de8..5c90c57 100644 --- a/style.css +++ b/style.css @@ -44,4 +44,39 @@ body { flex-wrap: nowrap; gap: 5em; box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); +} + +#bottom > span { + display: flex; + justify-content: center; + align-content: center; + overflow: hidden; +} + +#bottom > span > svg { + margin-right: 5px; + width: 25px; +} + +.texte_anime { + animation: devoilement; + animation-duration: 20s; + animation-iteration-count: infinite; +} + +@keyframes devoilement { + from { + transform: translateX(-100%); + opacity: 0; + } + 10% { + opacity: 1; + transform: translateX(0); + } + 95%{ + opacity: 1; + } + to{ + opacity: 0; + } } \ No newline at end of file