(levers) add levers

This commit is contained in:
Julien Calixte
2023-07-08 17:18:10 +02:00
parent b37168fd9a
commit be15420dcc
2 changed files with 28 additions and 3 deletions

View File

@@ -22,6 +22,16 @@
<h2>Customer Satisfaction</h2> <h2>Customer Satisfaction</h2>
<p>Value analysis / Value engineering</p> <p>Value analysis / Value engineering</p>
</section> </section>
<section class="levers">
<ul>
<li>Security</li>
<li>Quality</li>
<li>Lead time</li>
<li>Cost</li>
<li>Morale</li>
<li>Environment</li>
</ul>
</section>
<section class="pilars"> <section class="pilars">
<section class="just-in-time"> <section class="just-in-time">
<h3>Just-in-time</h3> <h3>Just-in-time</h3>

View File

@@ -5,7 +5,7 @@
} }
* { * {
border-radius: 1rem; border-radius: 0.5rem;
} }
body { body {
@@ -32,17 +32,31 @@ main {
justify-content: flex-end; justify-content: flex-end;
align-items: center; align-items: center;
text-align: center; text-align: center;
border-radius: 6rem 6rem 0.5rem 0.5rem; border-radius: 5rem 5rem 0.5rem 0.5rem;
background-color: var(--background-color); background-color: var(--background-color);
} }
.customer-satisfaction h2, .customer-satisfaction h2,
.customer-satisfaction p { .customer-satisfaction p {
margin: 0; margin: 0;
padding: 0 0.5rem; padding: 0 0.5rem 0.5rem;
border-radius: 0; border-radius: 0;
} }
.levers {
background-color: var(--background-color);
margin: 0.5rem 0;
}
.levers ul {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
padding-left: 0;
margin: 0;
}
.pilars { .pilars {
display: flex; display: flex;
justify-content: space-around; justify-content: space-around;
@@ -51,6 +65,7 @@ main {
.pilars h3 { .pilars h3 {
background-color: var(--background-color); background-color: var(--background-color);
margin-top: 0;
margin-bottom: 0; margin-bottom: 0;
padding: 1rem 2rem; padding: 1rem 2rem;
width: calc(100% - (2rem * 2)); width: calc(100% - (2rem * 2));