From: Vincent Vanwaelscappel Date: Thu, 18 Dec 2025 14:39:16 +0000 (+0100) Subject: wait #7905 @0.75 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=8868baa377f4183396534598afa6dac4c61dfe56;p=psq.git wait #7905 @0.75 --- diff --git a/resources/sass/app.scss b/resources/sass/app.scss index d26274b..fe05671 100644 --- a/resources/sass/app.scss +++ b/resources/sass/app.scss @@ -33,7 +33,7 @@ main { min-height: calc(100vh - 160px); } -p,a,h1,h2,h3,h4,span,li,div { +p, a, h1, h2, h3, h4, span, li, div { color: $blue; } @@ -43,13 +43,13 @@ p { margin: 0; } -button,button:focus { +button, button:focus { outline: none; box-shadow: none !important; } .box-shadow-cover { - box-shadow: 3px 3px 6px rgba(0,0,0,.26); + box-shadow: 3px 3px 6px rgba(0, 0, 0, .26); } @media print { @@ -60,6 +60,7 @@ button,button:focus { // max-width: initial !important; //} } + .box { box-shadow: 0 2px 0 rgba(90, 97, 105, 0.11), 0 4px 8px rgba(90, 97, 105, 0.12), @@ -75,10 +76,12 @@ header { color: #ffffff; position: relative; padding: 16px 0; + * { color: #ffffff; } } + .header-logo-link { @extend .absolute--center; @include media-breakpoint-up(xl) { @@ -86,6 +89,7 @@ header { transform: none !important; } } + .header-logo { width: 104px; max-width: 850px; @@ -119,17 +123,17 @@ a { &.bottom { &-left { - left:10px; + left: 10px; position: absolute; bottom: 0; } &-right { - right:10px; + right: 10px; position: absolute; bottom: 0; } -} + } } @@ -154,7 +158,7 @@ a { } -.simple-preview{ +.simple-preview { .chapo { font-size: small; } @@ -184,11 +188,13 @@ article { } @extend .ck-content; + h2 { font-size: 22px; text-align: center; } + .content { max-width: 800px; font-size: larger; @@ -213,13 +219,11 @@ article { text-transform: uppercase; } } -.error-403 { - p { - font-size: x-large; - } + +.error-403, .error-404 { a { color: inherit !important; - + text-decoration: underline; } } @@ -230,7 +234,7 @@ article { margin: auto; } -.mh-campaign{ +.mh-campaign { max-height: 120px; } @@ -245,7 +249,7 @@ article { color: $psq_blue; } -.article-preview h3{ +.article-preview h3 { font-size: 22px; } @@ -292,6 +296,7 @@ article { h2 { } + p { //font-weight: bold; color: $psq_blue; @@ -343,22 +348,26 @@ article { @extend .position-absolute; top: 50%; left: 50%; - transform: translate(-50%,-50%); + transform: translate(-50%, -50%); } #openmenu { position: relative; + img { position: relative; z-index: 2; } + &.open:after { transform: scale(1); } + &.open { img:not(.openmenu-img) { display: none; } + .openmenu-img { display: inline !important; } @@ -453,6 +462,7 @@ article { width: max-content; transition: background-color .3s; text-decoration: none !important; + &:hover { background-color: #9d3a38; } @@ -502,10 +512,12 @@ article { @include media-breakpoint-down(xl) { padding: 0; } + &.card-decouvrir-psq { padding-top: 64px; } } + &.form { max-width: 832px; margin: 0 auto; @@ -517,6 +529,7 @@ article { padding: 64px; } } + &-header { padding: 0; background: transparent; @@ -525,6 +538,7 @@ article { margin-bottom: 31px; font-weight: 600; } + &-body { padding: 0; @@ -538,6 +552,7 @@ article { input, textarea { border: 1px solid $waveblue; + &:hover, &:focus { box-shadow: none; @@ -609,14 +624,17 @@ article { .form-group { position: relative; + .invalid-feedback { position: absolute; top: 6px; right: 0; text-align: right; + strong { font-weight: 600; } + @include media-breakpoint-down(xl) { position: static; order: -1; @@ -626,7 +644,7 @@ article { } } -$fs : (16,20,25); +$fs: (16, 20, 25); @each $fs in $fs { .f-#{$fs} { diff --git a/resources/views/errors/403.blade.php b/resources/views/errors/403.blade.php index 634f70d..332353e 100644 --- a/resources/views/errors/403.blade.php +++ b/resources/views/errors/403.blade.php @@ -1,21 +1,11 @@ @extends('layouts.app') +@section('title', __('Not Found')) @section('content') - -
-

Vous ne pouvez pas accéder à cette page !

- - - @guest -

Si vous possédez un compte, cliquez ici pour vous connecter

-

Sinon, cliquez ici pour découvrir nos formules d'abonnement !

- @endguest - @auth - @if(\Auth::user()->onTrial() || \Auth::user()->isOnDiscoverUser()) -

Vous ne pouvez accéder qu'au dernier numéro en période découverte !

- @elseif(!\Auth::user()->hasValidSubscription()) -

Il semblerait que votre abonnement n'est plus actif...

- @endif - @endauth -
+
+
+

Accès réservé aux abonnés

+

Veuillez vous connecter ou découvrez nos offres d'abonnement

+
+
@endsection diff --git a/routes/web.php b/routes/web.php index 0efe603..d626808 100644 --- a/routes/web.php +++ b/routes/web.php @@ -94,7 +94,7 @@ Route::domain(env('CLIENT_DOMAIN_NAME'))->group(function () { //Route::get('podcasts', 'PodcastController@index'); - Route::get('pas-encore-inscrit', 'Auth\NotRegisteredYet@index')->name('not-registered'); + //Route::get('pas-encore-inscrit', 'Auth\NotRegisteredYet@index')->name('not-registered'); Route::get('presentation', 'Auth\NotRegisteredYet@presentation')->name('presentation'); Route::get('contact', 'ContactController@requestContactForm')->name('contact.index');