2023-05-20 10:02:10 +02:00
|
|
|
@mixin li-no-margin() {
|
|
|
|
li {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin container-big() {
|
|
|
|
padding-left: $lineheight;
|
|
|
|
padding-right: $lineheight;
|
|
|
|
max-width: $container-size;
|
|
|
|
margin:auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-pills {
|
|
|
|
list-style:none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.align {
|
|
|
|
&-center {text-align: center;}
|
|
|
|
&-left {text-align: left;}
|
|
|
|
&-right {text-align: right;}
|
|
|
|
}
|
|
|
|
|
2023-10-28 09:04:41 +02:00
|
|
|
#description {
|
|
|
|
display:grid;
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
grid-template-areas:
|
|
|
|
"title"
|
|
|
|
"illustration"
|
|
|
|
"content";
|
|
|
|
@include xl() {
|
|
|
|
grid-template-columns: 400px auto;
|
|
|
|
grid-template-areas:
|
|
|
|
"title title"
|
|
|
|
"illustration content";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#desc-title {
|
|
|
|
grid-area: title;
|
|
|
|
}
|
|
|
|
|
|
|
|
#description-content {
|
|
|
|
grid-area:content;
|
|
|
|
}
|
|
|
|
|
2023-07-15 12:48:08 +02:00
|
|
|
.illustration {
|
|
|
|
display:block;
|
|
|
|
margin:auto;
|
2023-10-28 09:04:41 +02:00
|
|
|
grid-area:illustration;
|
|
|
|
max-width:100%;
|
|
|
|
height:auto;
|
2023-07-15 12:48:08 +02:00
|
|
|
@include xl() {
|
|
|
|
padding-bottom: 0;
|
2023-10-28 09:04:41 +02:00
|
|
|
max-width: 530px;
|
2023-07-15 12:48:08 +02:00
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
position: relative;
|
|
|
|
top: 0px;
|
|
|
|
right: 64px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-28 09:04:41 +02:00
|
|
|
.align-centered-block {
|
|
|
|
text-align:center;
|
|
|
|
padding:1rem;
|
|
|
|
}
|
|
|
|
|
2023-05-20 10:02:10 +02:00
|
|
|
#page-header {
|
2023-11-18 10:21:46 +01:00
|
|
|
background: get-color("skyblue") url("data:image/svg+xml,%3Csvg width='800' height='300' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='420' cy='440' r='300' fill='%23FDF7E7' /%3E%3Ccircle cx='700' cy='510' r='300' fill='%23FDF7E7' /%3E%3Ccircle cx='-100' cy='510' r='300' fill='%23FDF7E7' /%3E%3Ccircle cx='150' cy='380' r='150' fill='%23FDF7E7' /%3E%3C/svg%3E");
|
2023-05-20 10:02:10 +02:00
|
|
|
border-top: 6px solid get-color("dark");
|
|
|
|
background-position: bottom center;
|
|
|
|
background-repeat: repeat-x;
|
2023-05-20 12:30:57 +02:00
|
|
|
margin-bottom:-1.5rem;
|
|
|
|
padding-bottom:5rem;
|
2023-05-20 10:02:10 +02:00
|
|
|
.fa {
|
|
|
|
font-size: 1rem;
|
|
|
|
}
|
2023-05-20 12:30:57 +02:00
|
|
|
|
|
|
|
@include sm() {
|
|
|
|
padding-bottom: 0;
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
}
|
2023-05-20 10:02:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
header h1 {
|
|
|
|
border-style:none !important;
|
|
|
|
font-weight: $fontweight_hyper;
|
|
|
|
font-size:5.4em;
|
|
|
|
font-style:oblique;
|
|
|
|
padding:1.5rem;
|
|
|
|
line-height: 1rem;
|
|
|
|
max-width: $container-size;
|
|
|
|
margin: auto;
|
|
|
|
text-align:center;
|
|
|
|
|
|
|
|
@include lg() {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
max-width: 640px;
|
|
|
|
height: auto;
|
|
|
|
margin-top:0rem;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
@include lg() {
|
|
|
|
position: relative;
|
|
|
|
left:-6rem;
|
|
|
|
}
|
|
|
|
z-index:0;
|
|
|
|
}
|
|
|
|
|
|
|
|
a, a:visited, a:hover {
|
|
|
|
background-color:transparent;
|
|
|
|
outline-color:white;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.osd {
|
|
|
|
background-color:rgba(0,0,0,0.3);
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar {
|
|
|
|
border-left: 0;
|
|
|
|
border-right: 0;
|
|
|
|
padding: 0.75rem;
|
|
|
|
color: $color-font-light;
|
|
|
|
a {
|
|
|
|
color: $color-font-light;
|
|
|
|
}
|
|
|
|
@include li-no-margin();
|
|
|
|
}
|
|
|
|
|
|
|
|
.categories {
|
|
|
|
font-weight:800;
|
|
|
|
font-size:0.8rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-menu {
|
|
|
|
box-shadow: $narrow-shadow, $inset-shadow;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container-big {
|
|
|
|
@include container-big();
|
|
|
|
}
|
|
|
|
|
|
|
|
.container-blog {
|
|
|
|
@include container-big();
|
|
|
|
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
grid-template-rows: auto;
|
|
|
|
row-gap: $lineheight;
|
|
|
|
column-gap: 1.5rem;
|
|
|
|
grid-template-areas:
|
|
|
|
"main"
|
|
|
|
"side";
|
|
|
|
|
|
|
|
@include lg() {
|
|
|
|
grid-template-columns: auto 320px;
|
|
|
|
grid-template-areas: "main side";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fullwidth {
|
|
|
|
grid-column: span 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar {
|
|
|
|
grid-area: side;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.tag-list {
|
|
|
|
display:flex;
|
|
|
|
padding-bottom:0;
|
|
|
|
overflow: hidden;
|
|
|
|
height:auto;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
li {
|
|
|
|
list-style: none;
|
|
|
|
margin:3px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.container-preview {
|
|
|
|
@include container-big();
|
|
|
|
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
grid-template-rows: auto;
|
|
|
|
row-gap: $lineheight;
|
|
|
|
column-gap: 3rem;
|
|
|
|
grid-template-areas:
|
|
|
|
"main"
|
|
|
|
"side";
|
|
|
|
|
|
|
|
@include lg() {
|
|
|
|
grid-template-columns: 360px auto;
|
|
|
|
grid-template-areas: "side main";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.container-onecolumn {
|
|
|
|
max-width:1280px;
|
|
|
|
margin: auto;
|
|
|
|
padding-bottom: $lineheight;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wrapper {
|
|
|
|
background-color: $color-background;
|
|
|
|
}
|
|
|
|
|
|
|
|
$color-footer-back: get-color("dark");
|
|
|
|
$color-footer-text: get-color("light");
|
|
|
|
|
|
|
|
body {
|
|
|
|
// On colorise le background de la page complete de la même
|
|
|
|
// couleur que le fond du footer.
|
|
|
|
background-color: $color-footer-back;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
@include angled-edge('outside top', 'upper left', $color-footer-back, 24);
|
|
|
|
color: $color-footer-text;
|
|
|
|
padding-bottom:1.5rem;
|
|
|
|
padding-top: 1.5rem;
|
|
|
|
.columns {
|
2023-10-28 09:04:41 +02:00
|
|
|
@include md() {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
|
|
grid-gap: $lineheight;
|
|
|
|
}
|
|
|
|
|
|
|
|
.col {
|
|
|
|
margin-bottom: $lineheight;
|
|
|
|
}
|
|
|
|
|
2023-05-20 10:02:10 +02:00
|
|
|
a {
|
|
|
|
color: $color-footer-text;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.home-toast {
|
|
|
|
max-width:800px;
|
|
|
|
width:100%;
|
|
|
|
margin:auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.social {
|
|
|
|
font-size: 1.5em;
|
|
|
|
padding-bottom: 0;
|
|
|
|
margin: auto;
|
|
|
|
text-align: center;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
li {
|
|
|
|
margin: 0;
|
|
|
|
list-style: none;
|
|
|
|
line-height: 1;
|
|
|
|
|
|
|
|
a,
|
|
|
|
a:visited {
|
|
|
|
color: $color-footer-back;
|
|
|
|
background-color: $color-footer-text;
|
|
|
|
padding: 0.3em;
|
|
|
|
width: 3rem;
|
|
|
|
aspect-ratio: 1;
|
|
|
|
|
|
|
|
display:flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
text-decoration: none;
|
|
|
|
border-radius: 100%;
|
|
|
|
line-height: 1;
|
|
|
|
margin:0.33rem;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $color-footer-text;
|
|
|
|
background-color: $color-footer-back;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|