From 04b9a43cf3436a83e538a6d77f78af84cb809184 Mon Sep 17 00:00:00 2001 From: UltraLion <49597041+UltraLionfr@users.noreply.github.com> Date: Mon, 14 Aug 2023 17:37:49 +0200 Subject: [PATCH] Create style.css --- css/style.css | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 css/style.css diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..777a178 --- /dev/null +++ b/css/style.css @@ -0,0 +1,67 @@ +@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700"); +* { + font-family: "Open Sans", sans-serif; + font-weight: 400; +} +body { + margin: 0; + padding: 0; + font-size: 16px; + background-color: #000000; +} +img { + max-width: 100%; +} +.container { + height: 100vh; + width: 100%; + background-size: cover; + background-position: 50% 0%; + /*overflow: hidden;*/ +} +.wrapper { + width: 100%; + height: 100%; + opacity: 0.7; + background: linear-gradient( + -55deg, + transparent 25%, + #000000 25%, + #000000 75%, + transparent 75%, + transparent 100% + ); + transition: all 0.5s cubic-bezier(0.67, 0, 0.3, 1) 1s; + display: flex; + justify-content: center; + align-items: center; + text-align: center; +} +.content { + /*transform:rotate(50deg);*/ + padding: 1rem; + color: rgba(255, 255, 255, 1); +} +.content h1 { + font-size: 3rem; + color: rgba(255, 255, 255, 1); +} +.content p { + font-size: 1.5rem; + color: rgba(255, 255, 255, 1); +} +.content a { + color: rgba(255, 255, 255, 1); + display: inline-block; + padding: 2.1% 4%; + overflow: hidden; + border-radius: 0; + text-decoration: none; +} + +/* Styles spécifiques pour l'image */ +.presentation-image { + max-width: 300px; + display: block; + margin: 0 auto; +}