Edited frontpage

This commit is contained in:
frederikpyt 2020-06-25 14:23:52 +02:00
parent 49d6853170
commit 9e9f48aca1
8 changed files with 105 additions and 1 deletions

View File

@ -307,6 +307,34 @@ a {
background-color: #00788a; background-color: #00788a;
} }
.block-container {
padding: 0 8px;
}
.block {
color: white;
padding: 1em 2em;
border-radius: 4px;
background-color: #00788a;
}
.links {
position: absolute;
width: 100%;
bottom: 8px;
height: 2rem;
justify-content: center;
}
.link {
height: 2rem;
display: inline-flex;
align-items: center;
align-content: center;
align-self: center;
margin-left: 8px;
}
.toggle { .toggle {
--uiToggleSize: var(--toggleSize, 20px); --uiToggleSize: var(--toggleSize, 20px);
--uiToggleIndent: var(--toggleIndent, .4em); --uiToggleIndent: var(--toggleIndent, .4em);

View File

@ -307,6 +307,34 @@ a {
background-color: #00788a; background-color: #00788a;
} }
.block-container {
padding: 0 8px;
}
.block {
color: white;
padding: 1em 2em;
border-radius: 4px;
background-color: #00788a;
}
.links {
position: absolute;
width: 100%;
bottom: 8px;
height: 2rem;
justify-content: center;
}
.link {
height: 2rem;
display: inline-flex;
align-items: center;
align-content: center;
align-self: center;
margin-left: 8px;
}
.toggle { .toggle {
--uiToggleSize: var(--toggleSize, 20px); --uiToggleSize: var(--toggleSize, 20px);
--uiToggleIndent: var(--toggleIndent, .4em); --uiToggleIndent: var(--toggleIndent, .4em);

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

View File

@ -57,3 +57,31 @@ a {
.bg-sde-blue { .bg-sde-blue {
background-color: $sde-blue; background-color: $sde-blue;
} }
.block-container {
padding: 0 8px;
}
.block {
color: white;
padding: 1em 2em;
border-radius: 4px;
background-color: $sde-blue;
}
.links{
position: absolute;
width: 100%;
bottom: 8px;
height: 2rem;
justify-content: center;
}
.link{
height: 2rem;
display: inline-flex;
align-items: center;
align-content: center;
align-self: center;
margin-left: 8px;
}

View File

@ -2,6 +2,9 @@
{{------app {{------app
{{----}} {{----}}
{{--Index--}}
{{----}}@extends("app.users.index")
{{--Login--}} {{--Login--}}
{{--@extends("app.users.login")--}} {{--@extends("app.users.login")--}}
@ -23,7 +26,7 @@
{{----}} {{----}}
{{--Index--}} {{--Index--}}
{{----}}@extends("admin.index") {{--@extends("admin.index")--}}
{{--Create User--}} {{--Create User--}}
{{--@extends("admin.users.create")--}} {{--@extends("admin.users.create")--}}

View File

@ -1,4 +1,21 @@
@extends('app.layout.base') @extends('app.layout.base')
@section('content') @section('content')
<div class="d-flex col block-container mt-2">
<a href="" class="block text-center mb-1">Menu</a>
<a href="" class="block text-center mb-1">Aktiviteter</a>
<a href="" class="block text-center mb-1">Kalender</a>
</div>
<div class="links row">
<a href="" class="link">
<img src="{{ URL::asset('/images/icons/facebook-icon.png') }}" class="h-100" alt="Facebook">
</a>
<a href="" class="link">
<img src="{{ URL::asset('/images/icons/yt.png') }}" class="h-100" alt="Youtube">
</a>
<a href="" class="link">
<img src="{{ URL::asset('/images/icons/instagram.png') }}" class="h-100" alt="Instagram">
</a>
</div>
@endsection @endsection