From 939b9d7179288a9e49e558217afcb8351eca527d Mon Sep 17 00:00:00 2001 From: BreizhHardware Date: Fri, 27 Sep 2024 17:36:51 +0200 Subject: [PATCH] Base (no test) --- .gitignore | 2 ++ index.html | 27 +++++++++++++++++++++++++++ style.css | 38 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 67 insertions(+) create mode 100644 .gitignore create mode 100644 index.html create mode 100644 style.css diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d48c759 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.idea +.vscode \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..cd017f3 --- /dev/null +++ b/index.html @@ -0,0 +1,27 @@ + + + + + Modelec Asset Live + + + + + + +
+ +
+
+
+

https://modelec.club

+

https://instagram.com/modelec_isen

+

https://github.com/modelec

+

contact@modelec.club

+

Nos partenaires:

+

Odyssey BDE

+

ISEN Nantes

+

MercuryCloud

+
+ + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..1ae281c --- /dev/null +++ b/style.css @@ -0,0 +1,38 @@ +/* +body{ + background-color: rgba(255, 255, 255, 0); + margin: 0; + font-family: 'Roboto', sans-serif; +} + */ + +body { + background-color: #00ff1a; + margin: 0; + font-family: 'Roboto', sans-serif; +} + +#topBar { + width: 100%; + height: 72px; + background-color: rgba(255, 89, 90, 0.5); + box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); +} + +#void { + height: 936px; +} + +#bottom { + bottom: 0; + width: 100%; + height: 72px; + background-color: rgba(255, 255, 255, 0.5); + display: flex; + justify-content: center; + align-items: center; + flex-direction: row; + flex-wrap: nowrap; + gap: 5em; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); +} \ No newline at end of file