refactor(theme): update theme to better fit updated logo
Signed-off-by: miguel456 <me@nogueira.codes>
This commit is contained in:
parent
c48f2a9ec2
commit
ea44af003c
10
public/app.css
vendored
10
public/app.css
vendored
@ -4,22 +4,20 @@
|
||||
}
|
||||
|
||||
.navbar {
|
||||
background: rgb(132,235,173);
|
||||
background: linear-gradient(90deg, rgba(132,235,173,1) 10%, rgba(110,182,207,1) 29%, rgba(109,146,255,1) 92%);
|
||||
background: rgb(0, 50, 73);
|
||||
}
|
||||
|
||||
.footer-grad {
|
||||
background: rgb(132,235,173);
|
||||
background: linear-gradient(90deg, rgba(132,235,173,1) 10%, rgba(110,182,207,1) 29%, rgba(109,146,255,1) 92%);
|
||||
background: rgb(0, 50, 73);
|
||||
}
|
||||
|
||||
.top-nav-collapse {
|
||||
background-color: #4285F4;
|
||||
background-color: #003249;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 768px) {
|
||||
.navbar {
|
||||
background-color: #4285F4;
|
||||
background-color: #003249;
|
||||
}
|
||||
}
|
||||
|
||||
|
BIN
public/slides/homepage.jpg
Executable file → Normal file
BIN
public/slides/homepage.jpg
Executable file → Normal file
Binary file not shown.
Before Width: | Height: | Size: 154 KiB After Width: | Height: | Size: 672 KiB |
@ -66,7 +66,7 @@
|
||||
|
||||
<nav class="navbar fixed-top navbar-expand-lg navbar-dark">
|
||||
<a class="navbar-brand" href="#">
|
||||
<img class="rounded" src="{{ asset(config('adminlte.logo_img')) }}" alt="Logo {{ config('app.name') }}" height="50px">
|
||||
<img class="rounded" src="{{ asset(config('adminlte.logo_img_xl')) }}" alt="Logo {{ config('app.name') }}" height="50px">
|
||||
</a>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
|
||||
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||||
@ -76,11 +76,11 @@
|
||||
<ul class="navbar-nav ml-auto float-right">
|
||||
@guest
|
||||
<li class="nav-item">
|
||||
<button class="btn btn-info" type="button" onclick="window.location.href='{{route('login')}}'"><i class="fas fa-sign-in-alt"></i> {{__('Sign in')}}</button>
|
||||
<button class="btn btn-dark" type="button" onclick="window.location.href='{{route('login')}}'"><i class="fas fa-sign-in-alt"></i> {{__('Sign in')}}</button>
|
||||
</li>
|
||||
|
||||
<li class="nav-item">
|
||||
<button class="btn btn-info" type="button" onclick="window.location.href='{{route('register')}}'"><i class="fas fa-plus"></i> {{__('Register')}}</button>
|
||||
<button class="btn btn-dark" type="button" onclick="window.location.href='{{route('register')}}'"><i class="fas fa-plus"></i> {{__('Register')}}</button>
|
||||
</li>
|
||||
@endguest
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
{{ $modalFooter ?? '' }}
|
||||
|
||||
@if ($includeCloseButton == true)
|
||||
@if ($includeCloseButton)
|
||||
<button type="button" class="btn btn-secondary" data-dismiss="modal">{{__('Close')}}</button>
|
||||
@endif
|
||||
</div>
|
||||
|
@ -9,7 +9,7 @@
|
||||
<!-- todo: details component -->
|
||||
|
||||
@foreach($positions as $position)
|
||||
<x-modal id="{{ $position->vacancySlug . '-details' }}" modal-label="{{ $position->vacancySlug . '-details-label' }}" modal-title="{{__('Vacancy details')}}" include-close-button="true">
|
||||
<x-modal id="{{ $position->vacancySlug . '-details' }}" modal-label="{{ $position->vacancySlug . '-details-label' }}" modal-title="{{__('Vacancy details')}}" include-close-button="false">
|
||||
|
||||
@if (is_null($position->vacancyFullDescription))
|
||||
|
||||
@ -29,7 +29,8 @@
|
||||
</p>
|
||||
@endif
|
||||
|
||||
<x-slot name="modalFooter"></x-slot>
|
||||
<x-slot name="modalFooter">
|
||||
</x-slot>
|
||||
|
||||
</x-modal>
|
||||
|
||||
@ -61,7 +62,7 @@
|
||||
|
||||
<div class="col text-center">
|
||||
<h3>Confira os cargos disponíveis</h3>
|
||||
<p>Quer colaborar com a equipe da Games Club? Estamos recrutando! Confira um dos nossos cargos abertos. Uma boa equipe é um pilar de uma comunidade bem-sucedida.</p>
|
||||
<p>Quer colaborar com a equipe da {{ config('app.name') }} Estamos recrutando! Confira um dos nossos cargos abertos. Uma boa equipe é um pilar de uma comunidade bem-sucedida.</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@ -114,11 +115,11 @@
|
||||
@if ($position->requiresDiscord)
|
||||
<button style="background-color: #5865F2; color: white" type="button" class="btn" onclick="window.location.href='{{route('discord-apply', ['vacancySlug' => $position->vacancySlug])}}'"><i class="fab fa-discord"></i> {{__('Apply with Discord')}}</button>
|
||||
@else
|
||||
<button type="button" class="btn btn-success" onclick="window.location.href='{{route('renderApplicationForm', ['vacancySlug' => $position->vacancySlug])}}'">{{__('Apply')}}</button>
|
||||
<button type="button" class="btn btn-dark" onclick="window.location.href='{{route('renderApplicationForm', ['vacancySlug' => $position->vacancySlug])}}'">{{__('Apply')}}</button>
|
||||
@endif
|
||||
@endguest
|
||||
|
||||
<button type="button" class="btn btn-info" onclick="$('#{{ $position->vacancySlug }}-details').modal('show')">{{__('Learn more')}}</button>
|
||||
<button type="button" class="btn btn-outline-primary" onclick="$('#{{ $position->vacancySlug }}-details').modal('show')">{{__('Learn more')}}</button>
|
||||
|
||||
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user