draft desktop version finish
57
assets/css/src/_footer.scss
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
body > footer {
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 0;
|
||||
padding: 2.5rem 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
header {
|
||||
text-align: center;
|
||||
.section-title {
|
||||
font-size: var(--font-size-s);
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 0.75rem;
|
||||
font-weight: 400;
|
||||
}
|
||||
.title {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
font-family: var(--font-narrow);
|
||||
font-size: var(--font-size-l);
|
||||
text-transform: uppercase;
|
||||
}
|
||||
}
|
||||
|
||||
.contact {
|
||||
margin-top: 5rem;
|
||||
width: 50rem;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
gap: 4rem;
|
||||
|
||||
.item {
|
||||
.name {
|
||||
font-size: var(--font-size-s);
|
||||
text-transform: uppercase;
|
||||
opacity: 0.6;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
}
|
||||
|
||||
.item:not(:last-child) {
|
||||
margin-bottom: 2.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
.legal {
|
||||
width: 50rem;
|
||||
margin-top: 5rem;
|
||||
padding: 2.5rem 0 0 0;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.2);
|
||||
}
|
||||
}
|
||||
31
assets/css/src/_generic-classes.scss
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
.blue-container {
|
||||
background-color: var(--color-blue);
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
.white-container {
|
||||
color: var(--color-blue);
|
||||
background-color: #fff !important;
|
||||
}
|
||||
|
||||
.blue-button {
|
||||
display: block;
|
||||
background-color: var(--color-blue);
|
||||
border-radius: 2rem;
|
||||
|
||||
font-size: var(--font-size-s);
|
||||
color: #fff !important;
|
||||
text-transform: uppercase;
|
||||
width: max-content;
|
||||
padding: 1rem 4rem;
|
||||
|
||||
&.outlined {
|
||||
outline: 1px solid #fff;
|
||||
}
|
||||
}
|
||||
|
||||
.blue-button:hover {
|
||||
background-color: #fff;
|
||||
color: var(--color-blue) !important;
|
||||
outline: 1px solid var(--color-blue);
|
||||
}
|
||||
32
assets/css/src/_header.scss
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
body {
|
||||
> header {
|
||||
position: sticky;
|
||||
z-index: 999;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
padding: 1.5rem var(--padding-body);
|
||||
box-sizing: border-box;
|
||||
|
||||
ul {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
|
||||
li {
|
||||
a {
|
||||
padding: 0.75rem;
|
||||
}
|
||||
}
|
||||
|
||||
li:not(:first-child) {
|
||||
font-size: var(--font-size-s);
|
||||
text-transform: uppercase;
|
||||
}
|
||||
li:first-child {
|
||||
width: 30%;
|
||||
font-size: 1.5625rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
47
assets/css/src/_reset.scss
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
body,
|
||||
html,
|
||||
ul,
|
||||
p,
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
blockquote {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
a:active {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
li {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
button {
|
||||
all: unset;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
cite {
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
main {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
background-color: #fff;
|
||||
margin-bottom: 50rem;
|
||||
}
|
||||
35
assets/css/src/_section_1-hero.scss
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
section#hero {
|
||||
position: relative;
|
||||
background-image: url('/assets/images/le-courage-du-reel-hero-bg.jpg');
|
||||
background-position: center 45%;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
padding: 0 var(--padding-body);
|
||||
|
||||
height: calc(100vh - 4.875rem);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
|
||||
.author-name {
|
||||
font-size: 1.5rem;
|
||||
margin-bottom: 1.75rem;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-family: var(--font-narrow);
|
||||
font-size: 8rem;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
#preorder-button {
|
||||
position: absolute;
|
||||
top: 50rem;
|
||||
}
|
||||
}
|
||||
56
assets/css/src/_section_10-buy.scss
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
section#buy {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 6rem var(--padding-body);
|
||||
|
||||
.text {
|
||||
text-align: center;
|
||||
width: 30rem;
|
||||
margin-left: 8rem;
|
||||
.section-title {
|
||||
font-size: var(--font-size-s);
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-family: 'owners-xnarrow', sans-serif;
|
||||
font-size: var(--font-size-l);
|
||||
text-transform: uppercase;
|
||||
color: var(--color-blue);
|
||||
margin-bottom: 1.75rem;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: var(--font-size-m);
|
||||
font-weight: 500;
|
||||
}
|
||||
p:not(:last-child) {
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.buy-links {
|
||||
margin-top: 5rem;
|
||||
li {
|
||||
margin-bottom: 1rem;
|
||||
a {
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.info {
|
||||
font-size: 0.625rem;
|
||||
opacity: 0.8;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2.4px;
|
||||
font-weight: 400;
|
||||
}
|
||||
}
|
||||
|
||||
img {
|
||||
width: 45%;
|
||||
height: 40vw;
|
||||
object-fit: cover;
|
||||
}
|
||||
}
|
||||
20
assets/css/src/_section_2-quote.scss
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
section#quote-full,
|
||||
section#quote {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
padding: 7.9375rem 0;
|
||||
|
||||
blockquote {
|
||||
display: block;
|
||||
width: min(100%, 40rem);
|
||||
text-align: center;
|
||||
font-size: 2.5rem;
|
||||
margin-bottom: 1.25rem;
|
||||
}
|
||||
}
|
||||
|
||||
section#quote {
|
||||
margin: 0 var(--padding-body);
|
||||
border-radius: var(--radius-section);
|
||||
}
|
||||
65
assets/css/src/_section_3-the_book.scss
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
section#the-book {
|
||||
padding: 10rem 15vw;
|
||||
|
||||
.summary-wrapper {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
column-gap: 4rem;
|
||||
margin-bottom: 4rem;
|
||||
|
||||
.title-wrapper {
|
||||
text-transform: uppercase;
|
||||
|
||||
.title {
|
||||
font-family: var(--font-narrow);
|
||||
font-size: 4.0625rem;
|
||||
font-weight: 700;
|
||||
color: blue;
|
||||
}
|
||||
}
|
||||
|
||||
.text {
|
||||
font-weight: normal;
|
||||
font-size: var(--font-size-m);
|
||||
p {
|
||||
margin-bottom: 1.75rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.data-wrapper {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
text-align: center;
|
||||
padding-top: 2.5rem;
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.2);
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 5rem;
|
||||
|
||||
.label {
|
||||
font-size: 0.625rem;
|
||||
font-weight: 400;
|
||||
opacity: 0.8;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
.claim-wrapper {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
align-items: center;
|
||||
column-gap: 4rem;
|
||||
|
||||
.text {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
|
||||
.big {
|
||||
font-size: 2.5rem;
|
||||
margin-bottom: 1.25rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
71
assets/css/src/_section_4-excerpts.scss
Normal file
|
|
@ -0,0 +1,71 @@
|
|||
section#excerpts {
|
||||
margin: 0 var(--padding-body);
|
||||
border-radius: var(--radius-section);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
padding: 6rem 14.375rem;
|
||||
|
||||
header {
|
||||
text-align: center;
|
||||
width: min(80%, 41.875rem);
|
||||
margin-bottom: 3rem;
|
||||
.label {
|
||||
font-weight: 400;
|
||||
font-size: var(--font-size-s);
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-family: var(--font-narrow);
|
||||
font-size: var(--font-size-l);
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 5%;
|
||||
}
|
||||
}
|
||||
|
||||
.slider {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
overflow: hidden;
|
||||
|
||||
.slide {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
.item {
|
||||
width: 13.125rem;
|
||||
.label {
|
||||
opacity: 0.8;
|
||||
text-transform: uppercase;
|
||||
font-size: 0.625rem;
|
||||
margin-bottom: 0.7rem;
|
||||
}
|
||||
.text {
|
||||
font-size: var(--font-size-m);
|
||||
line-height: 140%;
|
||||
margin-bottom: 8rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.controls {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
.bullets {
|
||||
display: flex;
|
||||
.bullet {
|
||||
width: 0.45rem;
|
||||
height: 0.45rem;
|
||||
border-radius: 100%;
|
||||
background-color: #fff;
|
||||
margin: 0.2rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
63
assets/css/src/_section_5-handles.scss
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
section#handles {
|
||||
margin: 5rem var(--padding-body);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
|
||||
header {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: end;
|
||||
|
||||
.title-wrapper {
|
||||
.index {
|
||||
font-size: var(--font-size-s);
|
||||
text-transform: uppercase;
|
||||
font-weight: 500;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
.title {
|
||||
font-family: var(--font-narrow);
|
||||
color: var(--color-blue);
|
||||
font-size: 4.0625rem;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
}
|
||||
.subtitle {
|
||||
font-weight: 500;
|
||||
margin-right: 7vw;
|
||||
}
|
||||
}
|
||||
|
||||
.path {
|
||||
margin-top: 7.5rem;
|
||||
width: 42rem;
|
||||
.step {
|
||||
box-sizing: border-box;
|
||||
width: min(100%, 20rem);
|
||||
padding: 1rem 2rem;
|
||||
border-radius: var(--radius-section);
|
||||
border: 1px solid var(--color-blue);
|
||||
color: var(--color-blue);
|
||||
font-size: var(--font-size-s);
|
||||
|
||||
font-weight: 500;
|
||||
|
||||
h4 {
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 0.7rem;
|
||||
}
|
||||
}
|
||||
.step:hover {
|
||||
background-color: var(--color-blue);
|
||||
color: #fff;
|
||||
}
|
||||
.step:nth-child(even) {
|
||||
margin-left: 22rem;
|
||||
}
|
||||
.step:not(:last-child) {
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
58
assets/css/src/_section_7-system.scss
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
section#system {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 5rem var(--padding-body);
|
||||
|
||||
.text {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
height: 46vw;
|
||||
max-width: 27rem;
|
||||
|
||||
.top {
|
||||
.section-title {
|
||||
font-weight: 400;
|
||||
font-size: var(--font-size-s);
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-family: 'owners-xnarrow', sans-serif;
|
||||
font-weight: 500;
|
||||
font-size: var(--font-size-l);
|
||||
text-transform: uppercase;
|
||||
color: var(--color-blue);
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.info {
|
||||
font-size: var(--font-size-m);
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
|
||||
.bottom {
|
||||
ul {
|
||||
li {
|
||||
list-style: disc;
|
||||
list-style-position: inside;
|
||||
}
|
||||
}
|
||||
ul:not(:last-child) {
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
figure {
|
||||
width: 55%;
|
||||
height: 46vw;
|
||||
img {
|
||||
object-fit: cover;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
42
assets/css/src/_section_8-excerpt.scss
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
section#excerpt {
|
||||
padding: 6rem 0;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
.wrapper {
|
||||
width: min(90vw, 40rem);
|
||||
|
||||
.section-title {
|
||||
font-size: var(--font-size-s);
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
.chapter-title {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
font-family: var(--font-narrow);
|
||||
font-size: var(--font-size-l);
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.content {
|
||||
margin: 3rem 0;
|
||||
font-size: var(--font-size-m);
|
||||
p:not(:last-child) {
|
||||
margin-bottom: 1.75rem;
|
||||
}
|
||||
|
||||
p.reference {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
}
|
||||
|
||||
.button-wrapper {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
.blue-button {
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
42
assets/css/src/_section_9-author.scss
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
section#author {
|
||||
display: flex;
|
||||
padding: 12.5rem var(--padding-body);
|
||||
img {
|
||||
border-radius: var(--radius-section);
|
||||
overflow: hidden;
|
||||
width: 25rem;
|
||||
height: 28rem;
|
||||
object-fit: cover;
|
||||
filter: grayscale(1);
|
||||
margin-right: 10vw;
|
||||
}
|
||||
|
||||
.text {
|
||||
width: 35rem;
|
||||
|
||||
.section-title {
|
||||
font-size: var(--font-size-s);
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 0.75rem;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.author-name {
|
||||
font-family: 'owners-xnarrow', sans-serif;
|
||||
font-size: var(--font-size-l);
|
||||
color: var(--color-blue);
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 5.75rem;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: var(--font-size-m);
|
||||
font-weight: 500;
|
||||
line-height: 140%;
|
||||
}
|
||||
|
||||
p:not(:last-child) {
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
5
assets/css/src/_text.scss
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
body {
|
||||
font-family: 'owners', sans-serif;
|
||||
font-weight: 400;
|
||||
letter-spacing: 5%;
|
||||
}
|
||||
13
assets/css/src/_variables.scss
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
:root {
|
||||
--font-narrow: 'owners-xnarrow', sans-serif;
|
||||
|
||||
--font-size-l: 4rem; // 65px
|
||||
--font-size-m: 1.125rem; // 18px
|
||||
--font-size-s: 0.9375rem; // 15px
|
||||
|
||||
--padding-body: 1.875rem;
|
||||
|
||||
--radius-section: 0.7rem;
|
||||
|
||||
--color-blue: #4433ff;
|
||||
}
|
||||
583
assets/css/style.css
Normal file
|
|
@ -0,0 +1,583 @@
|
|||
body,
|
||||
html,
|
||||
ul,
|
||||
p,
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
blockquote {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
a:active {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
li {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
button {
|
||||
all: unset;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
cite {
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
main {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
background-color: #fff;
|
||||
margin-bottom: 50rem;
|
||||
}
|
||||
|
||||
:root {
|
||||
--font-narrow: 'owners-xnarrow', sans-serif;
|
||||
--font-size-l: 4rem;
|
||||
--font-size-m: 1.125rem;
|
||||
--font-size-s: 0.9375rem;
|
||||
--padding-body: 1.875rem;
|
||||
--radius-section: 0.7rem;
|
||||
--color-blue: #4433ff;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: "owners", sans-serif;
|
||||
font-weight: 400;
|
||||
letter-spacing: 5%;
|
||||
}
|
||||
|
||||
.blue-container {
|
||||
background-color: var(--color-blue);
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
.white-container {
|
||||
color: var(--color-blue);
|
||||
background-color: #fff !important;
|
||||
}
|
||||
|
||||
.blue-button {
|
||||
display: block;
|
||||
background-color: var(--color-blue);
|
||||
border-radius: 2rem;
|
||||
font-size: var(--font-size-s);
|
||||
color: #fff !important;
|
||||
text-transform: uppercase;
|
||||
width: -moz-max-content;
|
||||
width: max-content;
|
||||
padding: 1rem 4rem;
|
||||
}
|
||||
.blue-button.outlined {
|
||||
outline: 1px solid #fff;
|
||||
}
|
||||
|
||||
.blue-button:hover {
|
||||
background-color: #fff;
|
||||
color: var(--color-blue) !important;
|
||||
outline: 1px solid var(--color-blue);
|
||||
}
|
||||
|
||||
body > header {
|
||||
position: sticky;
|
||||
z-index: 999;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
padding: 1.5rem var(--padding-body);
|
||||
box-sizing: border-box;
|
||||
}
|
||||
body > header ul {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
body > header ul li a {
|
||||
padding: 0.75rem;
|
||||
}
|
||||
body > header ul li:not(:first-child) {
|
||||
font-size: var(--font-size-s);
|
||||
text-transform: uppercase;
|
||||
}
|
||||
body > header ul li:first-child {
|
||||
width: 30%;
|
||||
font-size: 1.5625rem;
|
||||
}
|
||||
|
||||
section#hero {
|
||||
position: relative;
|
||||
background-image: url("/assets/images/le-courage-du-reel-hero-bg.jpg");
|
||||
background-position: center 45%;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
padding: 0 var(--padding-body);
|
||||
height: calc(100vh - 4.875rem);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
}
|
||||
section#hero .author-name {
|
||||
font-size: 1.5rem;
|
||||
margin-bottom: 1.75rem;
|
||||
}
|
||||
section#hero .title {
|
||||
font-family: var(--font-narrow);
|
||||
font-size: 8rem;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0;
|
||||
}
|
||||
section#hero .subtitle {
|
||||
font-weight: 400;
|
||||
}
|
||||
section#hero #preorder-button {
|
||||
position: absolute;
|
||||
top: 50rem;
|
||||
}
|
||||
|
||||
section#quote-full,
|
||||
section#quote {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
padding: 7.9375rem 0;
|
||||
}
|
||||
section#quote-full blockquote,
|
||||
section#quote blockquote {
|
||||
display: block;
|
||||
width: min(100%, 40rem);
|
||||
text-align: center;
|
||||
font-size: 2.5rem;
|
||||
margin-bottom: 1.25rem;
|
||||
}
|
||||
|
||||
section#quote {
|
||||
margin: 0 var(--padding-body);
|
||||
border-radius: var(--radius-section);
|
||||
}
|
||||
|
||||
section#the-book {
|
||||
padding: 10rem 15vw;
|
||||
}
|
||||
section#the-book .summary-wrapper {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
-moz-column-gap: 4rem;
|
||||
column-gap: 4rem;
|
||||
margin-bottom: 4rem;
|
||||
}
|
||||
section#the-book .summary-wrapper .title-wrapper {
|
||||
text-transform: uppercase;
|
||||
}
|
||||
section#the-book .summary-wrapper .title-wrapper .title {
|
||||
font-family: var(--font-narrow);
|
||||
font-size: 4.0625rem;
|
||||
font-weight: 700;
|
||||
color: blue;
|
||||
}
|
||||
section#the-book .summary-wrapper .text {
|
||||
font-weight: normal;
|
||||
font-size: var(--font-size-m);
|
||||
}
|
||||
section#the-book .summary-wrapper .text p {
|
||||
margin-bottom: 1.75rem;
|
||||
}
|
||||
section#the-book .data-wrapper {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
text-align: center;
|
||||
padding-top: 2.5rem;
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.2);
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 5rem;
|
||||
}
|
||||
section#the-book .data-wrapper .label {
|
||||
font-size: 0.625rem;
|
||||
font-weight: 400;
|
||||
opacity: 0.8;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
section#the-book .claim-wrapper {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
align-items: center;
|
||||
-moz-column-gap: 4rem;
|
||||
column-gap: 4rem;
|
||||
}
|
||||
section#the-book .claim-wrapper .text {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
}
|
||||
section#the-book .claim-wrapper .text .big {
|
||||
font-size: 2.5rem;
|
||||
margin-bottom: 1.25rem;
|
||||
}
|
||||
|
||||
section#excerpts {
|
||||
margin: 0 var(--padding-body);
|
||||
border-radius: var(--radius-section);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
padding: 6rem 14.375rem;
|
||||
}
|
||||
section#excerpts header {
|
||||
text-align: center;
|
||||
width: min(80%, 41.875rem);
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
section#excerpts header .label {
|
||||
font-weight: 400;
|
||||
font-size: var(--font-size-s);
|
||||
text-transform: uppercase;
|
||||
}
|
||||
section#excerpts header .title {
|
||||
font-family: var(--font-narrow);
|
||||
font-size: var(--font-size-l);
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 5%;
|
||||
}
|
||||
section#excerpts .slider {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
overflow: hidden;
|
||||
}
|
||||
section#excerpts .slider .slide {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
section#excerpts .slider .slide .item {
|
||||
width: 13.125rem;
|
||||
}
|
||||
section#excerpts .slider .slide .item .label {
|
||||
opacity: 0.8;
|
||||
text-transform: uppercase;
|
||||
font-size: 0.625rem;
|
||||
margin-bottom: 0.7rem;
|
||||
}
|
||||
section#excerpts .slider .slide .item .text {
|
||||
font-size: var(--font-size-m);
|
||||
line-height: 140%;
|
||||
margin-bottom: 8rem;
|
||||
}
|
||||
section#excerpts .controls {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
section#excerpts .controls .bullets {
|
||||
display: flex;
|
||||
}
|
||||
section#excerpts .controls .bullets .bullet {
|
||||
width: 0.45rem;
|
||||
height: 0.45rem;
|
||||
border-radius: 100%;
|
||||
background-color: #fff;
|
||||
margin: 0.2rem;
|
||||
}
|
||||
|
||||
section#handles {
|
||||
margin: 5rem var(--padding-body);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
section#handles header {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: end;
|
||||
}
|
||||
section#handles header .title-wrapper .index {
|
||||
font-size: var(--font-size-s);
|
||||
text-transform: uppercase;
|
||||
font-weight: 500;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
section#handles header .title-wrapper .title {
|
||||
font-family: var(--font-narrow);
|
||||
color: var(--color-blue);
|
||||
font-size: 4.0625rem;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
section#handles header .subtitle {
|
||||
font-weight: 500;
|
||||
margin-right: 7vw;
|
||||
}
|
||||
section#handles .path {
|
||||
margin-top: 7.5rem;
|
||||
width: 42rem;
|
||||
}
|
||||
section#handles .path .step {
|
||||
box-sizing: border-box;
|
||||
width: min(100%, 20rem);
|
||||
padding: 1rem 2rem;
|
||||
border-radius: var(--radius-section);
|
||||
border: 1px solid var(--color-blue);
|
||||
color: var(--color-blue);
|
||||
font-size: var(--font-size-s);
|
||||
font-weight: 500;
|
||||
}
|
||||
section#handles .path .step h4 {
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 0.7rem;
|
||||
}
|
||||
section#handles .path .step:hover {
|
||||
background-color: var(--color-blue);
|
||||
color: #fff;
|
||||
}
|
||||
section#handles .path .step:nth-child(even) {
|
||||
margin-left: 22rem;
|
||||
}
|
||||
section#handles .path .step:not(:last-child) {
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
section#system {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 5rem var(--padding-body);
|
||||
}
|
||||
section#system .text {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
height: 46vw;
|
||||
max-width: 27rem;
|
||||
}
|
||||
section#system .text .top .section-title {
|
||||
font-weight: 400;
|
||||
font-size: var(--font-size-s);
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
section#system .text .top .title {
|
||||
font-family: "owners-xnarrow", sans-serif;
|
||||
font-weight: 500;
|
||||
font-size: var(--font-size-l);
|
||||
text-transform: uppercase;
|
||||
color: var(--color-blue);
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
section#system .text .top .info {
|
||||
font-size: var(--font-size-m);
|
||||
font-weight: 500;
|
||||
}
|
||||
section#system .text .bottom ul li {
|
||||
list-style: disc;
|
||||
list-style-position: inside;
|
||||
}
|
||||
section#system .text .bottom ul:not(:last-child) {
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
section#system figure {
|
||||
width: 55%;
|
||||
height: 46vw;
|
||||
}
|
||||
section#system figure img {
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
section#excerpt {
|
||||
padding: 6rem 0;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
section#excerpt .wrapper {
|
||||
width: min(90vw, 40rem);
|
||||
}
|
||||
section#excerpt .wrapper .section-title {
|
||||
font-size: var(--font-size-s);
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
section#excerpt .wrapper .chapter-title {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
font-family: var(--font-narrow);
|
||||
font-size: var(--font-size-l);
|
||||
text-transform: uppercase;
|
||||
}
|
||||
section#excerpt .wrapper .content {
|
||||
margin: 3rem 0;
|
||||
font-size: var(--font-size-m);
|
||||
}
|
||||
section#excerpt .wrapper .content p:not(:last-child) {
|
||||
margin-bottom: 1.75rem;
|
||||
}
|
||||
section#excerpt .wrapper .content p.reference {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
section#excerpt .wrapper .button-wrapper {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
section#excerpt .wrapper .button-wrapper .blue-button {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
section#author {
|
||||
display: flex;
|
||||
padding: 12.5rem var(--padding-body);
|
||||
}
|
||||
section#author img {
|
||||
border-radius: var(--radius-section);
|
||||
overflow: hidden;
|
||||
width: 25rem;
|
||||
height: 28rem;
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover;
|
||||
filter: grayscale(1);
|
||||
margin-right: 10vw;
|
||||
}
|
||||
section#author .text {
|
||||
width: 35rem;
|
||||
}
|
||||
section#author .text .section-title {
|
||||
font-size: var(--font-size-s);
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 0.75rem;
|
||||
font-weight: 400;
|
||||
}
|
||||
section#author .text .author-name {
|
||||
font-family: "owners-xnarrow", sans-serif;
|
||||
font-size: var(--font-size-l);
|
||||
color: var(--color-blue);
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 5.75rem;
|
||||
}
|
||||
section#author .text p {
|
||||
font-size: var(--font-size-m);
|
||||
font-weight: 500;
|
||||
line-height: 140%;
|
||||
}
|
||||
section#author .text p:not(:last-child) {
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
section#buy {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 6rem var(--padding-body);
|
||||
}
|
||||
section#buy .text {
|
||||
text-align: center;
|
||||
width: 30rem;
|
||||
margin-left: 8rem;
|
||||
}
|
||||
section#buy .text .section-title {
|
||||
font-size: var(--font-size-s);
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
section#buy .text .title {
|
||||
font-family: "owners-xnarrow", sans-serif;
|
||||
font-size: var(--font-size-l);
|
||||
text-transform: uppercase;
|
||||
color: var(--color-blue);
|
||||
margin-bottom: 1.75rem;
|
||||
}
|
||||
section#buy .text p {
|
||||
font-size: var(--font-size-m);
|
||||
font-weight: 500;
|
||||
}
|
||||
section#buy .text p:not(:last-child) {
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
section#buy .text .buy-links {
|
||||
margin-top: 5rem;
|
||||
}
|
||||
section#buy .text .buy-links li {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
section#buy .text .buy-links li a {
|
||||
display: inline-block;
|
||||
}
|
||||
section#buy .text .info {
|
||||
font-size: 0.625rem;
|
||||
opacity: 0.8;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2.4px;
|
||||
font-weight: 400;
|
||||
}
|
||||
section#buy img {
|
||||
width: 45%;
|
||||
height: 40vw;
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
body > footer {
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 0;
|
||||
padding: 2.5rem 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
body > footer header {
|
||||
text-align: center;
|
||||
}
|
||||
body > footer header .section-title {
|
||||
font-size: var(--font-size-s);
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 0.75rem;
|
||||
font-weight: 400;
|
||||
}
|
||||
body > footer header .title {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
font-family: var(--font-narrow);
|
||||
font-size: var(--font-size-l);
|
||||
text-transform: uppercase;
|
||||
}
|
||||
body > footer .contact {
|
||||
margin-top: 5rem;
|
||||
width: 50rem;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
gap: 4rem;
|
||||
}
|
||||
body > footer .contact .item .name {
|
||||
font-size: var(--font-size-s);
|
||||
text-transform: uppercase;
|
||||
opacity: 0.6;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
body > footer .contact .item:not(:last-child) {
|
||||
margin-bottom: 2.5rem;
|
||||
}
|
||||
body > footer .legal {
|
||||
width: 50rem;
|
||||
margin-top: 5rem;
|
||||
padding: 2.5rem 0 0 0;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.2);
|
||||
}/*# sourceMappingURL=style.css.map */
|
||||
1
assets/css/style.css.map
Normal file
15
assets/css/style.scss
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
@import 'src/reset.scss';
|
||||
@import 'src/variables';
|
||||
@import 'src/text.scss';
|
||||
@import 'src/generic-classes.scss';
|
||||
@import 'src/header.scss';
|
||||
@import 'src/section_1-hero.scss';
|
||||
@import 'src/section_2-quote.scss';
|
||||
@import 'src/section_3-the_book.scss';
|
||||
@import 'src/section_4-excerpts.scss';
|
||||
@import 'src/section_5-handles.scss';
|
||||
@import 'src/section_7-system.scss';
|
||||
@import 'src/section_8-excerpt.scss';
|
||||
@import 'src/section_9-author.scss';
|
||||
@import 'src/section_10-buy.scss';
|
||||
@import 'src/footer.scss';
|
||||
BIN
assets/images/frederic-denjoy.jpg
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
assets/images/le-courage-du-reel-cover.jpg
Normal file
|
After Width: | Height: | Size: 195 KiB |
BIN
assets/images/le-courage-du-reel-hero-bg.jpg
Normal file
|
After Width: | Height: | Size: 3.6 MiB |
BIN
assets/images/le-courage-du-reel-mine.jpg
Normal file
|
After Width: | Height: | Size: 388 KiB |
BIN
assets/images/schema.png
Normal file
|
After Width: | Height: | Size: 910 KiB |
4
assets/svg/arrow-left.svg
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
<svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="26" height="26" rx="13" fill="white"/>
|
||||
<path d="M12.8497 12.2621L18 12.2492L18 13.7379L12.8497 13.7379L10.4575 13.6861L13.2288 17L11.4248 17L8 13L11.4248 9L13.1895 9L10.4314 12.301L12.8497 12.2621Z" fill="#4433FF"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 332 B |
4
assets/svg/arrow-right.svg
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
<svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="26" height="26" rx="13" fill="white"/>
|
||||
<path d="M13.1503 13.7379L8 13.7508V12.2621H13.1503L15.5425 12.3139L12.7712 9H14.5752L18 13L14.5752 17H12.8105L15.5686 13.699L13.1503 13.7379Z" fill="#4433FF"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 316 B |
|
|
@ -1,2 +0,0 @@
|
|||
@import "reset.css";
|
||||
@import "text.css";
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
html {box-sizing: border-box;}*,*::before,*::after {box-sizing: inherit;}body,h1,h2,h3,h4,h5,h6,ul,ol,li,p,pre,blockquote,figure,hr {margin: 0;padding: 0; font-size:100%; font-weight: normal;}ul {list-style: none;}input,textarea,select,button {color: inherit;font: inherit;letter-spacing: inherit;}input,textarea,button {border: 1px solid gray;}button {border-radius: 0;padding: 0.75em 1em;background-color: transparent;}button * {pointer-events: none;}embed,iframe,img,object,video {display: block;max-width: 100%;}table {table-layout: fixed;width: 100%;}[hidden] {display: none !important;}noscript {display: block;margin-bottom: 1em;margin-top: 1em;}
|
||||
/* Buttons and input buttons */
|
||||
[role="button"],input[type="submit"],input[type="reset"],input[type="button"],button { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box;}
|
||||
input[type="submit"], input[type="reset"], input[type="button"], button { background: none; border: 0; color: inherit; font: inherit; line-height: normal; overflow: visible; padding: 0; -webkit-appearance: button; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; }
|
||||
input::-moz-focus-inner, button::-moz-focus-inner { border: 0; padding: 0;}
|
||||
45
css/text.css
|
|
@ -1,45 +0,0 @@
|
|||
.title-l {
|
||||
font-size: var(--font-size-xxl);
|
||||
line-height: var(--line-height-title-l);
|
||||
font-family: serif;
|
||||
}
|
||||
.title-m {
|
||||
font-size: var(--font-size-xl);
|
||||
line-height: var(--line-height-title-m);
|
||||
font-family: serif;
|
||||
}
|
||||
|
||||
.current-text-l {
|
||||
font-size: var(--font-size-l);
|
||||
line-height: var(--line-height-current-text-l);
|
||||
font-family: sans-serif;
|
||||
}
|
||||
.current-text-m {
|
||||
font-size: var(--font-size-m);
|
||||
line-height: var(--line-height-current-text);
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
.bubble-current-text {
|
||||
font-size: var(--font-size-s);
|
||||
line-height: var(--line-height-current-text);
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
.label-m,
|
||||
.bubble-title,
|
||||
.topbar-menu-item {
|
||||
/*revoir les classes*/
|
||||
font-size: var(--font-size-s);
|
||||
line-height: var(--line-height-label-m);
|
||||
font-family: sans-serif;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.label-s {
|
||||
font-size: var(--font-size-xs);
|
||||
line-height: var(--line-height-label-s);
|
||||
font-family: sans-serif;
|
||||
opacity: 0.8;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
|
@ -1,25 +0,0 @@
|
|||
:root{
|
||||
--font-size-xxl : 8rem;
|
||||
--font-size-xl : 4.0625rem;
|
||||
--font-size-l : 2.5rem;
|
||||
--font-size-m : 1.125rem;
|
||||
--font-size-s : 0.9375rem;
|
||||
--font-size-xs : 0.625rem;
|
||||
|
||||
--line-height-title-l: 0.93em;
|
||||
--line-height-title-m: 1em;
|
||||
--line-height-bubble-title: 1em;
|
||||
--line-height-current-text-l: 50px;
|
||||
--line-height-current-text: 1.4em;
|
||||
--line-height-label-m: 1em;
|
||||
--line-height-label-s: 15px;
|
||||
|
||||
--spacing-l: calc(var(--spacing-m) * 2);
|
||||
--spacing-m: 5rem;
|
||||
--spacing-s: 1.75rem;
|
||||
--spacing-xs: 1.25rem;
|
||||
|
||||
--color-blue:#4433FF;
|
||||
--color-black: black;
|
||||
--color-white: white;
|
||||
}
|
||||
510
index.html
|
|
@ -1,76 +1,442 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Document</title>
|
||||
<link rel="stylesheet" href="css\main.css">
|
||||
</head>
|
||||
<body>
|
||||
<nav class="topbar">
|
||||
<p class="topbar-name">F.Denjoy</p>
|
||||
<li class="topbar-menu">
|
||||
<ul class="topbar-menu-item"><a href="#">Le Courage du Réel</a></ul>
|
||||
<ul class="topbar-menu-item"><a href="#">Extraits</a></ul>
|
||||
<ul class="topbar-menu-item"><a href="#">Les poignées</a></ul>
|
||||
<ul class="topbar-menu-item"><a href="#">Le système</a></ul>
|
||||
<ul class="topbar-menu-item"><a href="#">L’auteur</a></ul>
|
||||
<ul class="topbar-menu-item"><a href="#">Précommander</a></ul>
|
||||
<ul class="topbar-menu-item"><a href="#">Presse</a></ul>
|
||||
</li>
|
||||
</nav>
|
||||
<link rel="stylesheet" href="/assets/css/style.css" />
|
||||
<link rel="stylesheet" href="https://use.typekit.net/tnd1ymt.css" />
|
||||
</head>
|
||||
<body>
|
||||
<header class="blue-container">
|
||||
<nav>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="#le-courage-du-reel">Le Courage du Réel</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">Extraits</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">Les poignées</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">Le système</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">L’auteur</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">Précommander</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">Presse</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<section id="le-courage-du-reel">
|
||||
<header id="hero">
|
||||
<p class="hero-name">Frédéric Denjoy</p>
|
||||
<h1>Le courage<br/> du réel</h1>
|
||||
<h2>Changer sans tomber, tenir sans croire</h2>
|
||||
</header>
|
||||
<section class="wraper-quote">
|
||||
<blockquote>
|
||||
<p>“Le vrai n'est pas démontrable.<br/> Il est habitable.”</p>
|
||||
</blockquote>
|
||||
<p class="current-text-m">— Le Courage du Réel</p>
|
||||
</section>
|
||||
<section class="the-book">
|
||||
<div class="warpper-title">
|
||||
<h3>Pour ceux qui ne sont<br/> plus si sûrs</h3>
|
||||
<p>Le livre</p>
|
||||
</div>
|
||||
<div class="current-text-m">
|
||||
<p>Tout sonne creux, comme si le monde se fermait. Une sensation d'absurde. Des mots, encore des mots— ils glissent. Ce livre commence là : quand ça ne tient plus. </p>
|
||||
<p>Ce n'est ni un développement personnel, ni un traité académique.</p>
|
||||
<p>Le Courage du Réel propose une ontologie du passage. Le réel n'est pas ce qui est, mais ce qui se traverse — localement — dans un geste vivant, face à un inconnu.</p>
|
||||
<p>Le mal n'est pas moral : il est structurel. La vérité, l'amour, l'intelligence, le pouvoir ne sont pas ce que tu crois — et toi non plus. De Platon à Lacan, ce livre met à nu ce qui ne fonctionne plus. Voici venu le temps de construire.</p>
|
||||
</div>
|
||||
<div class="wrapper-data">
|
||||
<div class="data">
|
||||
<p class="label-s">Éditeur</p>
|
||||
<p class="label-m">Reconnaissance</p>
|
||||
</div>
|
||||
<div class="data">
|
||||
<p class="label-s">Pages</p>
|
||||
<p class="label-m">220</p>
|
||||
</div>
|
||||
<div class="data">
|
||||
<p class="label-s">Parution</p>
|
||||
<p class="label-m">2026</p>
|
||||
</div>
|
||||
<div class="data">
|
||||
<p class="label-s">ISBN</p>
|
||||
<p class="label-m">978-2-487595-32-3</p>
|
||||
</div>
|
||||
</div>
|
||||
<div></div>
|
||||
</section>
|
||||
</section>
|
||||
<section id="extrait"></section>
|
||||
<section id="les-poignees"></section>
|
||||
<section id="le-systeme"></section>
|
||||
<section id="l-auteur"></section>
|
||||
<section id="precommander"></section>
|
||||
<section id="presse"></section>
|
||||
</main>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
<section id="hero" class="white-container">
|
||||
<p class="author-name">Frédéric Denjoy</p>
|
||||
<h1 class="title">
|
||||
Le courage<br />
|
||||
du réel
|
||||
</h1>
|
||||
<h2 class="subtitle">Changer sans tomber,<br />tenir sans croire</h2>
|
||||
<a
|
||||
id="preorder-button"
|
||||
class="blue-button"
|
||||
href="https://editions-reconnaissance.fr/livre/le-courage-du-reel/"
|
||||
target="_blank"
|
||||
>Précommander le livre</a
|
||||
>
|
||||
</section>
|
||||
|
||||
<section id="quote-full" class="blue-container">
|
||||
<blockquote>
|
||||
<p>
|
||||
“Le vrai n'est pas démontrable.<br />
|
||||
Il est habitable.”
|
||||
</p>
|
||||
</blockquote>
|
||||
<p>
|
||||
<cite>— Le Courage du Réel</cite>
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section id="the-book">
|
||||
<div class="summary-wrapper">
|
||||
<div class="title-wrapper">
|
||||
<h3 class="title">Pour ceux qui ne sont plus si sûrs</h3>
|
||||
<p>Le livre</p>
|
||||
</div>
|
||||
<div class="text">
|
||||
<p>
|
||||
Tout sonne creux, comme si le monde se fermait. Une sensation
|
||||
d'absurde. Des mots, encore des mots— ils glissent. Ce livre
|
||||
commence là : quand ça ne tient plus.
|
||||
</p>
|
||||
<p>
|
||||
Ce n'est ni un développement personnel, ni un traité académique.
|
||||
</p>
|
||||
<p>
|
||||
Le Courage du Réel propose une ontologie du passage. Le réel n'est
|
||||
pas ce qui est, mais ce qui se traverse — localement — dans un
|
||||
geste vivant, face à un inconnu.
|
||||
</p>
|
||||
<p>
|
||||
Le mal n'est pas moral : il est structurel. La vérité, l'amour,
|
||||
l'intelligence, le pouvoir ne sont pas ce que tu crois — et toi
|
||||
non plus. De Platon à Lacan, ce livre met à nu ce qui ne
|
||||
fonctionne plus. Voici venu le temps de construire.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="data-wrapper">
|
||||
<div class="data">
|
||||
<p class="label">Éditeur</p>
|
||||
<p class="value">Reconnaissance</p>
|
||||
</div>
|
||||
<div class="data">
|
||||
<p class="label">Pages</p>
|
||||
<p class="value">220</p>
|
||||
</div>
|
||||
<div class="data">
|
||||
<p class="label">Parution</p>
|
||||
<p class="value">2026</p>
|
||||
</div>
|
||||
<div class="data">
|
||||
<p class="label">ISBN</p>
|
||||
<p class="value">978-2-487595-32-3</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="claim-wrapper">
|
||||
<img
|
||||
src="/assets/images/le-courage-du-reel-mine.jpg"
|
||||
alt="Illustration montrant un mineur portant un casque éclairant"
|
||||
/>
|
||||
<div class="text">
|
||||
<p class="big">
|
||||
Pourquoi beaucoup de gens brillants ratent leur vie sans
|
||||
comprendre pourquoi.
|
||||
</p>
|
||||
<p class="small">
|
||||
Rater sa vie, ce n'est pas échouer. C'est continuer à tenir
|
||||
quelque chose qui te vide — en sachant que ça te vide.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="excerpts" class="blue-container">
|
||||
<header>
|
||||
<h2 class="label">Extraits</h2>
|
||||
<h3 class="title">
|
||||
Le réel traversé appelle un mot pour ne pas mourir
|
||||
</h3>
|
||||
</header>
|
||||
<div class="slider">
|
||||
<div class="slide">
|
||||
<div class="item">
|
||||
<p class="label">Prologue</p>
|
||||
<p class="text">
|
||||
Le réel est un seuil.<br />
|
||||
On entre, ou pas.
|
||||
</p>
|
||||
</div>
|
||||
<div class="item">
|
||||
<p class="label">La peur</p>
|
||||
<p class="text">
|
||||
Le réel est là, à portée de main. La peur est son odeur.
|
||||
</p>
|
||||
</div>
|
||||
<div class="item">
|
||||
<p class="label">L'apprentissage</p>
|
||||
<p class="text">
|
||||
On ne devient pas Einstein en le lisant, ni Picasso en le
|
||||
regardant.<br />
|
||||
<br />
|
||||
Ça sauve presque.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<button class="prev">
|
||||
<img src="/assets/svg/arrow-left.svg" alt="flèche précédente" />
|
||||
</button>
|
||||
<ul class="bullets">
|
||||
<li><button class="bullet"></button></li>
|
||||
<li><button class="bullet"></button></li>
|
||||
</ul>
|
||||
<button class="next">
|
||||
<img src="/assets/svg/arrow-right.svg" alt="flèche suivante" />
|
||||
</button>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="handles">
|
||||
<header>
|
||||
<div class="title-wrapper">
|
||||
<h2 class="index">Chapitre III</h2>
|
||||
<h3 class="title">Les 7 poignées du réel</h3>
|
||||
</div>
|
||||
<p class="subtitle">Se défendre quand on ne peut plus fuir</p>
|
||||
</header>
|
||||
<div class="path">
|
||||
<div class="step">
|
||||
<h4>Le Bien ouvre, le Mal bloque</h4>
|
||||
<p>
|
||||
Pas de morale préétablie. Un geste est bon s'il ouvre un passage
|
||||
réel, mauvais s'il ferme une possibilité vivante.
|
||||
</p>
|
||||
</div>
|
||||
<div class="step">
|
||||
<h4>Chacun sent le mal</h4>
|
||||
<p>
|
||||
Le mal précède le langage. On ne pense pas « c'est mal » — on sent
|
||||
que ça s'est fermé.<br />
|
||||
Ce savoir est incarné, universel.
|
||||
</p>
|
||||
</div>
|
||||
<div class="step">
|
||||
<h4>Le libre arbitre est absolu dans le relatif</h4>
|
||||
<p>
|
||||
La liberté est un lieu.<br />
|
||||
Ici.<br />
|
||||
Là-bas.<br />
|
||||
Là où la vie tue le choix.
|
||||
</p>
|
||||
</div>
|
||||
<div class="step">
|
||||
<h4>L'intelligence est justesse du geste</h4>
|
||||
<p>
|
||||
Ni le savoir, ni le QI. La capacité de poser le geste juste, en
|
||||
acceptant d'être transformé par ce qu'on rencontre.
|
||||
</p>
|
||||
</div>
|
||||
<div class="step">
|
||||
<h4>La vérité anticipe l'inconnu</h4>
|
||||
<p>
|
||||
Une parole est vraie si elle permet de traverser. Fausse si elle
|
||||
empêche. Indépendamment de sa logique ou de son élégance.
|
||||
</p>
|
||||
</div>
|
||||
<div class="step">
|
||||
<h4>L'amour tient face à ce qui échappe</h4>
|
||||
<p>
|
||||
Rester présent face à ce qui échappe — la mort, l'infini, l'autre
|
||||
— sans se fermer. Une puissance, pas une faiblesse.
|
||||
</p>
|
||||
</div>
|
||||
<div class="step">
|
||||
<h4>Pouvoir, c'est la capacité d'aimer</h4>
|
||||
<p>
|
||||
Maintenir une maille ouverte pour l'autre, sans l'emprunter
|
||||
soi-même. Rendre possible, puis s'écarter.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="quote" class="blue-container">
|
||||
<blockquote>
|
||||
<p>
|
||||
“Il ne t'explique rien. Il regarde si quelque chose passe en toi —
|
||||
ou pas.”
|
||||
</p>
|
||||
</blockquote>
|
||||
<p>
|
||||
<cite>— Le Courage du Réel</cite>
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section id="system">
|
||||
<div class="text">
|
||||
<div class="top">
|
||||
<h2 class="section-title">Ontologie</h2>
|
||||
<h3 class="title">La carte du réel</h3>
|
||||
<p class="info">
|
||||
Chaque fragment peut révéler le système entier s'il est vécu
|
||||
jusqu'au bout
|
||||
</p>
|
||||
</div>
|
||||
<div class="bottom">
|
||||
<ul>
|
||||
<li>Tension brute (excès d’inconnu)</li>
|
||||
<li>Geste (mouvement vivant)</li>
|
||||
<li>Maille (lieu du passage)</li>
|
||||
<li>Forme (structure habitable)</li>
|
||||
<li>Tissus (formes -> monde)</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>
|
||||
Points d’épreuve : vérité, intelligence, libre arbitre,
|
||||
bien/mal, pouvoir, conscience du mal, amour
|
||||
</li>
|
||||
<li>Bords : infini, mort</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<figure>
|
||||
<img src="/assets/images/schema.png" alt="Schéma la carte du réel" />
|
||||
</figure>
|
||||
</section>
|
||||
|
||||
<section id="excerpt" class="blue-container">
|
||||
<div class="wrapper">
|
||||
<h2 class="section-title">Extrait</h2>
|
||||
<h3 class="chapter-title">Chapitre IV — Ontologie des formes</h3>
|
||||
<div class="content">
|
||||
<p>
|
||||
Une forme fragile apparaît quand un geste traverse un point du
|
||||
monde sans se refermer sur lui-même. C'est ce qui tient et respire
|
||||
encore.
|
||||
</p>
|
||||
<p>
|
||||
Elle peut être minuscule, bancale, même invisible, mais si
|
||||
vivante, elle laisse passer quelque chose : circulation, souffle,
|
||||
lien.
|
||||
</p>
|
||||
<p>
|
||||
On reconnaît une forme vivante non à sa structure mais au fait
|
||||
qu'elle réagit encore à un geste, qu'un lien peut l'irriguer sans
|
||||
la figer, qu'elle peut encore muter.
|
||||
</p>
|
||||
<br />
|
||||
<p>
|
||||
Comme tous les matins, Samuel regarde sa femme et lui lance un
|
||||
« Bonne journée mon amour » avant de fermer la porte de leur
|
||||
rez-de-jardin. Ça fait bien longtemps que le mot sonne creux. Il a
|
||||
certainement la même place pour eux que moutarde ou télécommande,
|
||||
mais ils continuent à se rassurer.
|
||||
</p>
|
||||
<p class="reference">
|
||||
<cite>Le courage du réel</cite> – Chapitre IV, Forme
|
||||
</p>
|
||||
</div>
|
||||
<div class="button-wrapper">
|
||||
<a
|
||||
class="blue-button outlined"
|
||||
href="https://editions-reconnaissance.fr/livre/le-courage-du-reel/"
|
||||
target="_blank"
|
||||
>Précommander le livre</a
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="author">
|
||||
<img
|
||||
src="/assets/images/frederic-denjoy.jpg"
|
||||
alt="Portrait de l'auteur Frédéric Denjoy"
|
||||
/>
|
||||
<div class="text">
|
||||
<h2 class="section-title">L'auteur</h2>
|
||||
<h3 class="author-name">Frédéric Denjoy</h3>
|
||||
<p>
|
||||
Frédéric Denjoy a passé vingt ans comme hedge fund manager au cœur
|
||||
de la finance internationale — chez T. Rowe Price, puis chez Brevan
|
||||
Howard, où il devient associé à vingt-huit ans, avant de fonder son
|
||||
propre fonds en partenariat avec Blackstone. Il poursuit une
|
||||
activité d'investissement indépendante.
|
||||
</p>
|
||||
<p>
|
||||
Ce premier livre propose ce que la pensée moderne n'a pas su offrir
|
||||
: un sol habitable. Ni dogme, ni relativisme. Un réel qui se
|
||||
traverse. Une forme vivante.
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="buy">
|
||||
<div class="text">
|
||||
<h2 class="section-title">Sortie 2026</h2>
|
||||
<h3 class="title">Ce livre est un bord.</h3>
|
||||
<p>
|
||||
Tu n'as pas à être d'accord. Tu n'as même pas à comprendre. Mais tu
|
||||
sais si tu entres — ou si tu fuis.<br />
|
||||
<br />
|
||||
Passer quand c'est possible — et tenir quand ça ne l'est plus.
|
||||
</p>
|
||||
<ul class="buy-links">
|
||||
<li>
|
||||
<a
|
||||
href="https://www.fnac.com/a22583623/Frederic-Denjoy-Le-courage-du-reel"
|
||||
target="_blank"
|
||||
class="blue-button"
|
||||
>Acheter - FNAC</a
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<a
|
||||
href="https://www.amazon.fr/COURAGE-DU-R%C3%89EL-Denjoy-Frederic/dp/B0GGYQN2FR"
|
||||
target="_blank"
|
||||
class="blue-button"
|
||||
>Acheter - FNAC</a
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<a
|
||||
href="https://editions-reconnaissance.fr/livre/le-courage-du-reel/"
|
||||
target="_blank"
|
||||
class="blue-button"
|
||||
>Acheter - FNAC</a
|
||||
>
|
||||
</li>
|
||||
</ul>
|
||||
<p class="info">Éditions Reconnaissance — ISBN 978-2-487595-32-3</p>
|
||||
</div>
|
||||
<img
|
||||
src="/assets/images/le-courage-du-reel-cover.jpg"
|
||||
alt="Couverture du livre Le courage du réel"
|
||||
/>
|
||||
</section>
|
||||
</main>
|
||||
<footer class="blue-container">
|
||||
<header>
|
||||
<h2 class="section-title">Contact</h2>
|
||||
<h3 class="title">Presse et médias</h3>
|
||||
</header>
|
||||
<div class="contact">
|
||||
<div class="left">
|
||||
<div class="item">
|
||||
<p class="name">Contact librairie</p>
|
||||
<a class="mail" href="mailto:diffusion@editions-reconnaissance.fr"
|
||||
>diffusion@editions-reconnaissance.fr</a
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right">
|
||||
<div class="item">
|
||||
<p class="name">Alina Gurdiel</p>
|
||||
<a class="mail" href="mailto:ag@alinagurdiel.com"
|
||||
>diffusion@editions-reconnaissance.fr</a
|
||||
>
|
||||
</div>
|
||||
<div class="item">
|
||||
<p class="name">Chaïma Moughaouic</p>
|
||||
<a class="mail" href="mailto:assistant@alinagurdiel.com"
|
||||
>assistant@alinagurdiel.com</a
|
||||
>
|
||||
</div>
|
||||
<div class="item">
|
||||
<p class="name">Anne Vuksanovic</p>
|
||||
<a class="mail" href="mailto:anne@alinagurdiel.com"
|
||||
>anne@alinagurdiel.com
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="legal">
|
||||
<p>
|
||||
© 2026 Frédéric Denjoy — Le Courage du Réel — Éditions Reconnaissance,
|
||||
Paris
|
||||
</p>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||