diff options
author | ADRN <adrien@luxeylab.net> | 2021-10-17 19:39:07 +0200 |
---|---|---|
committer | ADRN <adrien@luxeylab.net> | 2021-10-17 19:39:07 +0200 |
commit | b314cf3df64b63ae1eab25072c316760aeb9749b (patch) | |
tree | e6a2ee7d6fb3a18f3955fece8f314370247b0b02 /blueprint/assets/css/deuxfleurs.css | |
parent | 9a1f9063ead0afc05c0e9fc4c090dbae52bb8b53 (diff) | |
download | design-b314cf3df64b63ae1eab25072c316760aeb9749b.tar.gz design-b314cf3df64b63ae1eab25072c316760aeb9749b.zip |
blueprinting yooo
Diffstat (limited to 'blueprint/assets/css/deuxfleurs.css')
-rw-r--r-- | blueprint/assets/css/deuxfleurs.css | 65 |
1 files changed, 64 insertions, 1 deletions
diff --git a/blueprint/assets/css/deuxfleurs.css b/blueprint/assets/css/deuxfleurs.css index 03bb363..0fbfcd5 100644 --- a/blueprint/assets/css/deuxfleurs.css +++ b/blueprint/assets/css/deuxfleurs.css @@ -1 +1,64 @@ -@charset "UTF-8";
\ No newline at end of file +@charset "UTF-8"; + +@font-face { + font-family: 'Space Mono'; + src: url('../fonts/spacemono/SpaceMono-BoldItalic.ttf') format('truetype'); + font-weight: bold; + font-style: italic; +} +@font-face { + font-family: 'Space Mono'; + src: url('../fonts/spacemono/SpaceMono-Bold.ttf') format('truetype'); + font-weight: bold; + font-style: normal; +} +@font-face { + font-family: 'Space Mono'; + src: url('../fonts/spacemono/SpaceMono-Italic.ttf') format('truetype'); + font-weight: normal; + font-style: italic; +} +@font-face { + font-family: 'Space Mono'; + src: url('../fonts/spacemono/SpaceMono-Regular.ttf') format('truetype'); + font-weight: normal; + font-style: normal; +} + + +html, body { + background-color: white; + font-family: "Space Mono", Monaco, monospace !important; +} + + + +header { + background-image: url("../images/illustration-ronce_1200x765px.png"); + height: 100vh; + width: 100vw; + /* Create the parallax scrolling effect */ + /* background-attachment: fixed; */ + background-position: center; + /* background-repeat: no-repeat; */ + background-repeat: no-repeat; + background-size: cover; +} + +header > p { + width: 40%; + position: relative; + left: 55%; + bottom: -80%; + + color: white; + /* color | offset-x | offset-y | blur-radius */ + text-shadow: black 0px 0px 4px; + + text-align: right; +} + +nav { + position: fixed; + +}
\ No newline at end of file |