Files
tps/index.css
2023-07-30 20:41:32 +02:00

141 lines
2.0 KiB
CSS

ul {
padding-left: 0;
margin: 0;
}
li {
flex: 1;
list-style: none;
text-align: center;
padding: 0.5rem 1rem;
}
.focusable {
background-color: var(--primary-color);
}
.focusable.no-focus {
background-color: var(--primary-color-no-focus);
}
.text-hide {
color: var(--primary-color);
}
.customer-satisfaction-roof {
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
text-align: center;
border-radius: 5rem 5rem 0.5rem 0.5rem;
}
.customer-satisfaction-roof h2,
.customer-satisfaction-roof p {
margin: 0;
padding: 0 0.5rem 0.5rem;
border-radius: 0;
}
.levers {
margin: 0.5rem 0;
}
.levers ul {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
padding-left: 0;
row-gap: 0.5rem;
gap: 0.5rem;
}
.people-improvement {
display: flex;
align-items: center;
justify-content: center;
flex: 1;
}
.people-improvement svg {
flex: 1;
min-width: max(15vw, 200px);
max-width: 20vw;
}
.pilars {
display: flex;
justify-content: space-around;
flex-direction: column;
}
.pilars h3 {
margin-top: 0;
margin-bottom: 0;
padding: 1rem 2rem;
width: calc(100% - (2rem * 2));
text-align: center;
}
.just-in-time-pilar,
.jidoka-pilar {
display: flex;
flex: 2;
flex-direction: column;
align-items: center;
gap: 1rem;
}
.pilars ul {
display: flex;
flex: 1;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
gap: 0.5rem;
}
.pilars li {
flex: 1;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.ground {
display: flex;
flex-direction: column;
margin: 0.5rem 0;
gap: 1rem;
}
.improvement ul,
.stability ul {
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
}
/* Wide screen */
@media only screen and (min-width: 750px) {
.pilars {
flex-direction: row;
}
}
a {
color: var(--color);
text-decoration: none;
}
a:visited,
a:focus,
a:focus-visible {
color: var(--color);
text-decoration: none;
}