From 299d06e0cde437126385aa0f4933aec3ac8c0f93 Mon Sep 17 00:00:00 2001 From: machaonix Date: Mon, 29 Nov 2021 22:26:05 +0100 Subject: [PATCH] Ajout de styles CSS --- styles/.ajouterListe.css.swp | Bin 0 -> 12288 bytes styles/ajouterListe.css | 9 ++++++ styles/connection.css | 57 +++++++++++++++++++++++++++++++++++ 3 files changed, 66 insertions(+) create mode 100644 styles/.ajouterListe.css.swp create mode 100644 styles/ajouterListe.css create mode 100755 styles/connection.css diff --git a/styles/.ajouterListe.css.swp b/styles/.ajouterListe.css.swp new file mode 100644 index 0000000000000000000000000000000000000000..306ed6217624fc0e190ccbfe582eba69c7c08cc0 GIT binary patch literal 12288 zcmeI%!AgWs6b9fk?Oa4rFJMKx#_QOks8zHnC=jCdcT`40z2Ut=!!XUm^dQlqb<`Ua zZCgeAj^fNxW^4QhehycU;{A5&(7idov=1GRxYmhYCXe#FNA!M0l*u5LDo^gKb1k)) z>-(oIWAv~X6iI1BpvpoE??m`#zA!3O{WQ@=XfsYDE#$2#O;lX)p~wleZo4tgK>z|v z2&~e+H*l-Lo$W1qbK`o6YcK)<2tWV=5P$##AOHaf{1*Xp*P|J4W~JGX)pY&@P}jUS zOEd^T00Izz00bZa0SG_<0uX=z1Ue`nL!#Ll(G#co|382K|K;@$=Zo{n`QW^9UOCU4 zdcK4E#Un!i0uX=z1Rwwb2tWV=5P$##x+O5Ji>yo*qa;7F2M4>yG$AKYxsgd86?Vpr ZXi8QbC8OBzi0jrfvB}asd#J)O{Q)+jNXq~K literal 0 HcmV?d00001 diff --git a/styles/ajouterListe.css b/styles/ajouterListe.css new file mode 100644 index 0000000..77eb202 --- /dev/null +++ b/styles/ajouterListe.css @@ -0,0 +1,9 @@ +html, body +{ + height: 100%; +} + +.container main +{ + margin: 17%; +} diff --git a/styles/connection.css b/styles/connection.css new file mode 100755 index 0000000..21b197b --- /dev/null +++ b/styles/connection.css @@ -0,0 +1,57 @@ +html, body +{ + height: 100%; +} + +body +{ + background-color: #7AA; +} + +main +{ + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + text-align: center; +} + +main div +{ + background-color: #8BBA; + margin-top: 17%; + margin-bottom: 17%; + padding: 16px; + border-radius: 16px; +} +input +{ + margin-bottom: 8px; +} + + +@media (max-width: 1000px) +{ + form + { + display: flex; + justify-content: center; + align-items: center; + } + input + { + font-size: 50px; + height: 65px; + width: 100%; + } + td + { + display: block; + text-align: center; + } + body + { + font-size: 75px; + } +}