Minor fixes

This commit is contained in:
Yves Gatesoupe 2020-07-17 20:00:13 +02:00
parent 74169b3ab9
commit 8b4f1f2cd1
7 changed files with 36 additions and 7 deletions

View File

@ -1,6 +1,6 @@
{% extends 'layouts/base.njk' %} {% extends 'layouts/base.njk' %}
{# {% set title = name %} #} {% set title = name %}
{% block content %} {% block content %}
<main id="main-content" tabindex="-1"> <main id="main-content" tabindex="-1">

View File

@ -16,7 +16,7 @@ La CAE cest aussi une société coopérative, chacun des associés qui la com
<iframe width="560" height="315" src="https://www.youtube.com/embed/4QhR_wM0MXk?controls=0" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> <iframe width="560" height="315" src="https://www.youtube.com/embed/4QhR_wM0MXk?controls=0" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div> </div>
## Le statut dentrepreneur salarié ## Situer le statut dentrepreneur salarié
<details> <details>
<summary> <summary>

View File

@ -146,4 +146,8 @@ legend {
.field-list__field-group { .field-list__field-group {
margin-top: 1.5rem; margin-top: 1.5rem;
} }
.btn[type=submit] {
width: 100%;
}
} }

View File

@ -114,6 +114,7 @@
grid-template-rows: auto; grid-template-rows: auto;
grid-column-gap: 1.5rem; grid-column-gap: 1.5rem;
grid-row-gap: 0; grid-row-gap: 0;
margin-bottom: 2rem;
.video-player > iframe { .video-player > iframe {
height: 89%; height: 89%;
@ -334,7 +335,7 @@
.post { .post {
&__body { &__body {
h1 { h1 {
margin: 4rem 0; margin: 2rem 0 4rem;
font-size: 1.75rem; font-size: 1.75rem;
} }
@ -343,7 +344,7 @@
} }
.table-wrapper { .table-wrapper {
overflow-y: auto; overflow-x: auto;
} }
table { table {

View File

@ -135,7 +135,7 @@ main.home .news-list {
&__items { &__items {
display: flex; display: flex;
overflow-y: auto; overflow-x: auto;
padding-bottom: 1rem; padding-bottom: 1rem;
padding-left: 1.25rem; padding-left: 1.25rem;
} }

View File

@ -16,10 +16,14 @@
&:focus { &:focus {
outline-color: var(--color-secondary); outline-color: var(--color-secondary);
} }
+ button {
display: none;
}
} }
} }
@media (max-width: 1199.98px) { @media (min-width: 768px) and (max-width: 1199.98px) {
.site-head { .site-head {
&__inner { &__inner {
display: block; display: block;
@ -31,3 +35,23 @@
} }
} }
} }
@media (max-width: 767.98px) {
.site-head {
padding-top: 2rem;
&__inner {
display: flex;
flex-wrap: wrap;
}
&__site-name {
display: inline-block;
+ button {
display: inline-block;
margin-left: auto;
}
}
}
}

View File

@ -40,7 +40,7 @@
.sponsor { .sponsor {
&__list { &__list {
display: flex; display: flex;
overflow-y: auto; overflow-x: auto;
padding-bottom: 1rem; padding-bottom: 1rem;
} }