diff --git a/assets/css/style.css b/assets/css/style.css new file mode 100644 index 0000000..aa6bd12 --- /dev/null +++ b/assets/css/style.css @@ -0,0 +1,22 @@ +:root { + background-color: white; +} + +body { + display: flex; + flex-direction: column; +} + +.Header { + display: flex; + flex-direction: row; +} +.Header h1 { + margin: auto; + align-self: center; +} +.Header input { + margin-top: auto; + margin-bottom: auto; + align-self: flex-end; +}/*# sourceMappingURL=style.css.map */ \ No newline at end of file diff --git a/assets/css/style.css.map b/assets/css/style.css.map new file mode 100644 index 0000000..19aeeba --- /dev/null +++ b/assets/css/style.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["style.scss","style.css"],"names":[],"mappings":"AAAA;EACI,uBAAA;ACCJ;;ADEA;EACI,aAAA;EACA,sBAAA;ACCJ;;ADEA;EACI,aAAA;EACA,mBAAA;ACCJ;ADCI;EACI,YAAA;EACA,kBAAA;ACCR;ADEI;EACI,gBAAA;EACA,mBAAA;EACA,oBAAA;ACAR","file":"style.css"} \ No newline at end of file diff --git a/assets/css/style.scss b/assets/css/style.scss new file mode 100644 index 0000000..4fa4976 --- /dev/null +++ b/assets/css/style.scss @@ -0,0 +1,32 @@ +:root { + background-color: white; +} + +body { + display: flex; + flex-direction: column; +} + +.Header { + display: flex; + flex-direction: row; + + h1 { + margin: auto; + align-self: center; + } + + input { + margin-top: auto; + margin-bottom: auto; + align-self: flex-end; + } + +} + + + + + + + diff --git a/index.html b/index.html index 09d46e2..d14db9e 100644 --- a/index.html +++ b/index.html @@ -1,30 +1,49 @@ + Acceuil de la tanière solidaire - + + +
-

La Tanière Solidaire

- +

La Tanière Solidaire

+
- - -

Les services :

- - +

+ Bienvenue sur le server de la tanière solidaire, un projet associatif +

+ +

Les services :

+ +

Nextcloud

+
+ +
+
+ +

Bitwarden

+
+ +
+
+ +

Forgejo

+
+ +
+
+ +

Email

+
+ +
+
+ \ No newline at end of file diff --git a/script.js b/script.js deleted file mode 100644 index 028a91f..0000000 --- a/script.js +++ /dev/null @@ -1,5 +0,0 @@ -"use strict"; - -window.addEventListener("DOMContentLoaded",function(){ - console.log("Loaded") -}) \ No newline at end of file diff --git a/style.css b/style.css deleted file mode 100644 index ac9f550..0000000 --- a/style.css +++ /dev/null @@ -1,25 +0,0 @@ -:root { - background-color: white; -} - -body { - display: flex; - flex-direction: column; -} - -.Header { - display: flex; - flex-direction: row; -} - -h1 { - align-self: center; -} - -input { - align-self: flex-end; -} - - - -