Changed primary menu order
Increase size logo and slogan Align menu item in bar better Fix: grey background in menu
This commit is contained in:
25
public/css/style.css
vendored
25
public/css/style.css
vendored
@@ -31,10 +31,14 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
.grey_background {
|
.grey_background:not(.site_container) {
|
||||||
background-color: #f9f9f9;
|
background-color: #f9f9f9;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.page {
|
||||||
|
padding-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
.content_container {
|
.content_container {
|
||||||
padding-right: 50px;
|
padding-right: 50px;
|
||||||
}
|
}
|
||||||
@@ -163,10 +167,10 @@ div.pp_default .pp_close:hover {
|
|||||||
}
|
}
|
||||||
.header .logo {
|
.header .logo {
|
||||||
float: left;
|
float: left;
|
||||||
margin-top: 18px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
.header .logo img {
|
.header .logo img {
|
||||||
height: 75px;
|
height: 95px;
|
||||||
}
|
}
|
||||||
.header .advertisement {
|
.header .advertisement {
|
||||||
float: right;
|
float: right;
|
||||||
@@ -198,7 +202,6 @@ div.pp_default .pp_close:hover {
|
|||||||
@media (min-width: 767px) {
|
@media (min-width: 767px) {
|
||||||
.menu_container {
|
.menu_container {
|
||||||
height: 75px;
|
height: 75px;
|
||||||
margin-bottom: 20px;
|
|
||||||
background-image: linear-gradient(to right, #0102b0, #4090e3);
|
background-image: linear-gradient(to right, #0102b0, #4090e3);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -577,8 +580,18 @@ div.pp_default .pp_close:hover {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.slogan {
|
.slogan {
|
||||||
width: 150px;
|
width: 190px;
|
||||||
margin: 12px 0;
|
margin: 8px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.grey_background nav > div {
|
||||||
|
background: #f9f9f9;
|
||||||
|
}
|
||||||
|
.grey_background .menu > li a {
|
||||||
|
background: #f9f9f9;
|
||||||
|
}
|
||||||
|
.grey_background .menu > li:last-child:after {
|
||||||
|
background: #f9f9f9;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header .now-playing-header {
|
.header .now-playing-header {
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
7
resources/assets/sass/base/_container.scss
vendored
7
resources/assets/sass/base/_container.scss
vendored
@@ -20,10 +20,13 @@ body {
|
|||||||
@include container;
|
@include container;
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
.grey_background {
|
.grey_background:not(.site_container) {
|
||||||
background-color: #f9f9f9;
|
background-color: $container-bg;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.page {
|
||||||
|
padding-top: 20px;
|
||||||
|
}
|
||||||
.content_container {
|
.content_container {
|
||||||
padding-right: 50px;
|
padding-right: 50px;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,9 +2,9 @@
|
|||||||
height: 111px;
|
height: 111px;
|
||||||
.logo {
|
.logo {
|
||||||
float: left;
|
float: left;
|
||||||
margin-top: 18px;
|
margin-top: 10px;
|
||||||
img {
|
img {
|
||||||
height: 75px;
|
height: 95px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.advertisement {
|
.advertisement {
|
||||||
|
|||||||
27
resources/assets/sass/components/_menu.scss
vendored
27
resources/assets/sass/components/_menu.scss
vendored
@@ -4,7 +4,6 @@
|
|||||||
.menu_container {
|
.menu_container {
|
||||||
@media (min-width: 767px) {
|
@media (min-width: 767px) {
|
||||||
height: 75px;
|
height: 75px;
|
||||||
margin-bottom: 20px;
|
|
||||||
background-image: linear-gradient(to right, #0102b0, #4090e3);
|
background-image: linear-gradient(to right, #0102b0, #4090e3);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -412,6 +411,28 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.slogan {
|
.slogan {
|
||||||
width: 150px;
|
width: 190px;
|
||||||
margin: 12px 0;
|
margin: 8px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.grey_background {
|
||||||
|
nav {
|
||||||
|
> div {
|
||||||
|
background: $container-bg;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu {
|
||||||
|
> li {
|
||||||
|
a {
|
||||||
|
background: $container-bg;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
&:after {
|
||||||
|
background: $container-bg;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,6 +10,9 @@
|
|||||||
@section('container_class')
|
@section('container_class')
|
||||||
grey_background
|
grey_background
|
||||||
@endsection
|
@endsection
|
||||||
|
@section('site_container_class')
|
||||||
|
grey_background
|
||||||
|
@endsection
|
||||||
|
|
||||||
@section('content_class')
|
@section('content_class')
|
||||||
@endsection
|
@endsection
|
||||||
|
|||||||
@@ -17,6 +17,9 @@
|
|||||||
@section('page_container_class')
|
@section('page_container_class')
|
||||||
grey_background
|
grey_background
|
||||||
@endsection
|
@endsection
|
||||||
|
@section('site_container_class')
|
||||||
|
grey_background
|
||||||
|
@endsection
|
||||||
@section('container_class')
|
@section('container_class')
|
||||||
news_post post_container
|
news_post post_container
|
||||||
@endsection
|
@endsection
|
||||||
|
|||||||
@@ -15,6 +15,9 @@
|
|||||||
@section('page_container_class')
|
@section('page_container_class')
|
||||||
grey_background
|
grey_background
|
||||||
@endsection
|
@endsection
|
||||||
|
@section('site_container_class')
|
||||||
|
grey_background
|
||||||
|
@endsection
|
||||||
@section('container_class')
|
@section('container_class')
|
||||||
news_post post_container
|
news_post post_container
|
||||||
@endsection
|
@endsection
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
style="display:none; visibility:hidden"></iframe>
|
style="display:none; visibility:hidden"></iframe>
|
||||||
</noscript>
|
</noscript>
|
||||||
<!-- End Google Tag Manager (noscript) -->
|
<!-- End Google Tag Manager (noscript) -->
|
||||||
<div class="site_container boxed">
|
<div class="site_container boxed @yield('site_container_class')">
|
||||||
<div class="header_top_bar_container style_11 clearfix">
|
<div class="header_top_bar_container style_11 clearfix">
|
||||||
</div>
|
</div>
|
||||||
<div class="header_container small">
|
<div class="header_container small">
|
||||||
@@ -64,13 +64,13 @@
|
|||||||
<img class="slogan" src="/images/Slogan_DIAP white.svg" />
|
<img class="slogan" src="/images/Slogan_DIAP white.svg" />
|
||||||
<ul class="right_menu">
|
<ul class="right_menu">
|
||||||
<li>
|
<li>
|
||||||
<a class="player with_svg_icon" style="margin-top: 2px;" href="{{url('luister/live')}}">Luister live radio {!!file_get_contents(__DIR__ . '/../../../public/images/icons/radio.svg')!!}</a>
|
<a class="player with_svg_icon" href="{{url('luister/live')}}">Luister live radio {!!file_get_contents(__DIR__ . '/../../../public/images/icons/radio.svg')!!}</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a class="with_svg_icon" style="margin-top: 1px;" href="{{url('kijk/studio')}}">Kijk live tv {!!file_get_contents(__DIR__ . '/../../../public/images/icons/television-2.svg')!!}</a>
|
<a class="with_svg_icon" href="{{url('kijk/studio')}}">Kijk live tv {!!file_get_contents(__DIR__ . '/../../../public/images/icons/television-2.svg')!!}</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="https://wa.me/31888505651" target="_blank">Tip de streekredactie <i class="fa-solid fa-circle-plus"></i></a>
|
<a href="https://wa.me/31888505651" style="{{!isset($searchURL) ? 'margin-top: 3px' : ''}}" target="_blank">Tip de streekredactie <i class="fa-solid fa-circle-plus"></i></a>
|
||||||
</li>
|
</li>
|
||||||
@if(isset($searchURL))
|
@if(isset($searchURL))
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -12,6 +12,9 @@
|
|||||||
@section('container_class')
|
@section('container_class')
|
||||||
grey_background
|
grey_background
|
||||||
@endsection
|
@endsection
|
||||||
|
@section('site_container_class')
|
||||||
|
grey_background
|
||||||
|
@endsection
|
||||||
|
|
||||||
@section('breadcrumb')
|
@section('breadcrumb')
|
||||||
@if($title)
|
@if($title)
|
||||||
|
|||||||
@@ -7,6 +7,9 @@
|
|||||||
@section('page_class')
|
@section('page_class')
|
||||||
grey_background page_container
|
grey_background page_container
|
||||||
@endsection
|
@endsection
|
||||||
|
@section('site_container_class')
|
||||||
|
grey_background
|
||||||
|
@endsection
|
||||||
|
|
||||||
@section('breadcrumb')
|
@section('breadcrumb')
|
||||||
<ul class="bread_crumb">
|
<ul class="bread_crumb">
|
||||||
|
|||||||
@@ -26,7 +26,6 @@
|
|||||||
),
|
),
|
||||||
"Gemist" => "/gemist/programma",
|
"Gemist" => "/gemist/programma",
|
||||||
"Regioagenda" => "/agenda",
|
"Regioagenda" => "/agenda",
|
||||||
"Adverteren?" => "/adverteren",
|
|
||||||
"Over NH Gooi" => array(
|
"Over NH Gooi" => array(
|
||||||
"" => "/contact",
|
"" => "/contact",
|
||||||
"Contact" => "/contact",
|
"Contact" => "/contact",
|
||||||
@@ -35,7 +34,8 @@
|
|||||||
"Uitgangspunten streekredactie" => "/uploads/Eigen rol en ambities NH Gooi binnen de lokale nieuwsvoorziening.pdf",
|
"Uitgangspunten streekredactie" => "/uploads/Eigen rol en ambities NH Gooi binnen de lokale nieuwsvoorziening.pdf",
|
||||||
"Frequenties" => "/frequenties",
|
"Frequenties" => "/frequenties",
|
||||||
"App" => "/app"
|
"App" => "/app"
|
||||||
)
|
),
|
||||||
|
"Adverteren" => "/adverteren"
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
<?php
|
<?php
|
||||||
|
|||||||
Reference in New Issue
Block a user