avancées styles
This commit is contained in:
parent
59016eb91a
commit
3382f9dc8f
|
@ -1,8 +1,10 @@
|
|||
<template>
|
||||
<div>
|
||||
<div v-if="etapeData">
|
||||
<!--
|
||||
<div v-if="loading">Loading...</div>
|
||||
<div v-if="error">{{ error }}</div>
|
||||
<div v-if="etapeData">
|
||||
-->
|
||||
<div>
|
||||
<pre>{{ etapeData }}</pre>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1,57 +1,56 @@
|
|||
@font-face {
|
||||
font-family: 'Joost';
|
||||
src: url('../fonts/joost/joost-bold.woff2') format('woff2');
|
||||
src: url('/themes/custom/caravane/assets/fonts/joost/joost-bold.woff2') format('woff2');
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Joost';
|
||||
src: url('../fonts/joost/joost-light.woff2') format('woff2');
|
||||
font-weight: 300;
|
||||
src: url('/themes/custom/caravane/assets/fonts/joost/joost-light.woff2') format('woff2');
|
||||
font-weight: lighter;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Marianne';
|
||||
src: url('../fonts/marianne/Marianne-Bold_Italic.woff') format('woff'),
|
||||
url('../fonts/marianne/Marianne-Bold_Italic.woff2') format('woff2');
|
||||
src: url('/themes/custom/caravane/assets/fonts/marianne/Marianne-Bold_Italic.woff') format('woff'),
|
||||
url('/themes/custom/caravane/assets/fonts/marianne/Marianne-Bold_Italic.woff2') format('woff2');
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Marianne';
|
||||
src: url('../fonts/marianne/Marianne-Bold.woff2') format('woff2');
|
||||
src: url('/themes/custom/caravane/assets/fonts/marianne/Marianne-Bold.woff2') format('woff2');
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Marianne';
|
||||
src: url('../fonts/marianne/Marianne-Light_Italic.woff2') format('woff2');
|
||||
font-weight: 300;
|
||||
src: url('/themes/custom/caravane/assets/fonts/marianne/Marianne-Light_Italic.woff2') format('woff2');
|
||||
font-weight: lighter;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Marianne';
|
||||
src: url('../fonts/marianne/Marianne-Light.woff2') format('woff2');
|
||||
font-weight: 300;
|
||||
src: url('/themes/custom/caravane/assets/fonts/marianne/Marianne-Light.woff2') format('woff2');
|
||||
font-weight: lighter;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Marianne';
|
||||
src: url('../fonts/marianne/Marianne-Regular_Italic.woff2') format('woff2');
|
||||
src: url('/themes/custom/caravane/assets/fonts/marianne/Marianne-Regular_Italic.woff2') format('woff2');
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Marianne';
|
||||
src: url('../fonts/marianne/Marianne-Regular.woff2') format('woff2');
|
||||
src: url('/themes/custom/caravane/assets/fonts/marianne/Marianne-Regular.woff2') format('woff2');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
|
@ -1,16 +1,17 @@
|
|||
@import 'fonts.scss';
|
||||
|
||||
$body-margin-x: 10px;
|
||||
$body-margin-x: 30px;
|
||||
$body-margin-y: 5px;
|
||||
|
||||
$sm-font-size: 0.8rem;
|
||||
$m-font-size: 1.4rem;
|
||||
|
||||
$main-color: #1a1918;
|
||||
$main-color-light: #635b58;
|
||||
$light-color: #faf1eb;
|
||||
|
||||
body{
|
||||
font-family: Marianne, sans-serif;
|
||||
font-family: 'Marianne', sans-serif;
|
||||
color: $main-color;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
@ -49,11 +50,15 @@ body{
|
|||
}
|
||||
}
|
||||
> #block-caravane-mainnavigation {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
grid-column: 16 / span 1;
|
||||
width: 100%;
|
||||
> div {
|
||||
width: 40%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
grid-column: 16 / span 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
cursor: pointer;
|
||||
> h2 {
|
||||
|
@ -70,7 +75,7 @@ body{
|
|||
align-items: center;
|
||||
width: 100%;
|
||||
> div {
|
||||
width: 40%;
|
||||
width: 100%;
|
||||
height: 3px;
|
||||
margin: 4px 0;
|
||||
border-radius: 2px;
|
||||
|
@ -83,21 +88,27 @@ body{
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
main {
|
||||
z-index: 1;
|
||||
position: fixed;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100vw;
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
> .layout-content {
|
||||
z-index: 1;
|
||||
position: relative;
|
||||
> div > .layout {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
> div {
|
||||
height: 100%;
|
||||
> .layout {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(16,1fr);
|
||||
height: 100vh;
|
||||
align-items: center;
|
||||
height: 100%;
|
||||
> .layout__region--first {
|
||||
padding-left: $body-margin-x;
|
||||
grid-column: 1 / span 4;
|
||||
|
@ -112,33 +123,53 @@ body{
|
|||
> .layout__region--second {
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
top: 0;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
.leaflet-container {
|
||||
// add map style here
|
||||
}
|
||||
}
|
||||
> .layout__region--third {
|
||||
padding-right: $body-margin-x;
|
||||
height: 100%;
|
||||
grid-column: 13 / span 4;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
background: linear-gradient(to right, transparent, #faf1eb);
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
pointer-events: none;
|
||||
> div {
|
||||
pointer-events: auto;
|
||||
ul {
|
||||
list-style: none;
|
||||
> li > div {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: $main-color;
|
||||
font-family: 'Joost', sans-serif;
|
||||
font-weight: bold;
|
||||
font-size: $m-font-size;
|
||||
display: inline-block;
|
||||
margin: 15px 0;
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
> #etape-modale {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
> #etape-modale > div {
|
||||
z-index: 2;
|
||||
position: absolute;
|
||||
top: 10vh;
|
||||
position: relative;
|
||||
top: 15vh;
|
||||
left: 25vw;
|
||||
width: 50vw;
|
||||
height: 80vh;
|
||||
background-color: rgba(255,255,255,0.5);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -36,6 +36,7 @@
|
|||
#}
|
||||
{% set heading_id = attributes.id ~ '-menu'|clean_id %}
|
||||
<nav role="navigation" aria-labelledby="{{ heading_id }}"{{ attributes|without('role', 'aria-labelledby') }}>
|
||||
<div>
|
||||
{# Label. If not displayed, we still provide it for screen readers. #}
|
||||
{% if not configuration.label_display %}
|
||||
{% set title_attributes = title_attributes.addClass('visually-hidden') %}
|
||||
|
@ -53,4 +54,5 @@
|
|||
{% block content %}
|
||||
{{ content }}
|
||||
{% endblock %}
|
||||
</div>
|
||||
</nav>
|
||||
|
|
Loading…
Reference in New Issue