[edit] hover effect for links buttons addede

aplus#10
tribikram 2 years ago
parent be90e624cd
commit ba0d78b571
  1. 2
      app/Http/Controllers/HomeController.php
  2. 21
      public/frontend/css/style.css
  3. BIN
      public/images/news_and_update/2022/12/09/4157e604ba36c240337a7db058fcec7b.png
  4. BIN
      public/images/setting/2022/12/09/501a7deebf3f5e06018c0df16594bcda.png
  5. 2
      resources/views/layout/app.blade.php
  6. 12
      resources/views/welcome.blade.php

@ -324,7 +324,7 @@ class HomeController extends Controller
public function news(){
$news = NewsAndUpdate::where('status',1)->get();
return view('news.blade.php',compact('news'))
return view('news.blade.php',compact('news'));
}
}

@ -484,6 +484,7 @@ Responsive Codes
width: 100%;
position: absolute;
padding: 20px;
border-radius: 0 0 8px 8px;
bottom: 0;
}
.first-blog h5, .first-blog p{
@ -752,13 +753,22 @@ Responsive Codes
list-style: none;
padding-left: 0;
}
.visa-services ul li a, .recruitment ul li a, .quick-links ul li a{
.visa-services ul li a,
.recruitment ul li a,
.quick-links ul li a{
font-weight: 400;
font-size: 14px;
color: #FFFFFF;
line-height: 2rem;
text-decoration: none;
}
.visa-services ul li a:hover,
.recruitment ul li a:hover,
.quick-links ul li a:hover,
.developed-by a:hover,
.disclaimer a:hover{
color: #F54C5F;
}
.footer-top::after{
content: '';
border-bottom: 1px solid #53676E;
@ -772,7 +782,9 @@ Responsive Codes
display: flex;
justify-content: space-between;
}
.footer-bottom p{
.footer-bottom p,
.disclaimer a{
text-decoration: none;
font-weight: 400;
font-size: 13px;
line-height: 1.8rem;
@ -932,6 +944,11 @@ Responsive Codes
line-height: 21px;
color: #FFFFFF;
}
.submit-btn button:hover,
.featured-news-desc a:hover,
.chef-hire-form button:hover{
background: #103E70;
}
.chef-hire-form input:focus,
.chef-hire-form select:focus,
.chef-hire-form textarea:focus,

Binary file not shown.

After

Width:  |  Height:  |  Size: 529 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

@ -141,7 +141,7 @@
<p>DICE © 2022. All Rights Reserved.</p>
</div>
<div class="disclaimer">
<p>Disclaimer|Privacy Policy </p>
<p><a href="">Disclaimer</a> | <a href="">Privacy Policy</a></p>
</div>
<div class="developed-by">
<p>Design & Developed by: <a href="https://www.extratechs.com.au/" target="_blank">Extratech</a></p>

@ -35,15 +35,15 @@
<div class="achievement-items">
<div class="achivement-sec">
<img src="{{url('frontend/icons/success-icon.svg')}}" class="img-fluid" alt="">
<h5>{{$visa_success->value}}</h5>
<h5>{{$visa_success->value ?? ''}}</h5>
</div>
<div class="achivement-sec">
<img src="{{url('frontend/icons/visa-approved.svg')}}" alt="">
<h5>{{$visa_approved->value}}</h5>
<h5>{{$visa_approved->value ?? ''}}</h5>
</div>
<div class="achivement-sec">
<img src="{{url('frontend/icons/institution.svg')}}" alt="">
<h5>{{$partner_institution->value}}</h5>
<h5>{{$partner_institution->value ?? ''}}</h5>
</div>
</div>
</section>
@ -159,11 +159,11 @@
<div class="featured-news">
<a href="/news_detail" href="">
<div class="featured-news-image">
<img src="{{url($news_and_updates->first()->image)}}" class="w-100" alt="">
<img src="{{url($news_and_updates->first()->image ?? '')}}" class="w-100" alt="">
</div>
<div class="featured-content">
<p>{{$news_and_updates->first()->created_at}}</p>
<h2>{{$news_and_updates->first()->title}}</h2>
<p>{{$news_and_updates->first()->created_at ?? ''}}</p>
<h2>{{$news_and_updates->first()->title ?? ''}}</h2>
<div class="featured-btn">
<p href="{{url('news/'.$news_and_updates->first()->slug )}}">Read more</p>
<i class="fa-solid fa-arrow-right-long"></i>

Loading…
Cancel
Save