From 403fccac24dd955a1bdc8cf7ae2fff744ab17993 Mon Sep 17 00:00:00 2001 From: Renarde-dev Date: Tue, 10 Sep 2024 22:04:28 +0200 Subject: [PATCH] Basic css --- assets/style-acceuil.css | 45 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 assets/style-acceuil.css diff --git a/assets/style-acceuil.css b/assets/style-acceuil.css new file mode 100644 index 0000000..9bccc07 --- /dev/null +++ b/assets/style-acceuil.css @@ -0,0 +1,45 @@ +@media (prefers-color-scheme: dark) { + body { + color: #c9d1d9; + background: #0d1117; + } +} + +body { + display: flex; + flex-direction: column; + text-align: center; +} + +h1 { + font-size: 18px/1.5; + line-height: 1.2; +} + +body > p { + margin-left: 25vw; + margin-right: 25vw; +} + +hr { + width: 100%; + color: black; +} + +.Services { + display: flex; + flex-flow: row wrap; + margin-left: 10vw; + margin-right: 10vw; + +} + +.Services > a { + width: 50%; + border-radius: 10px; + box-shadow:0px 0px 0px 1px red inset; +} + +.Services > a > img { + width: 80%; +} \ No newline at end of file