Mise à jour du design
This commit is contained in:
@ -15,7 +15,7 @@ html {
|
||||
body {
|
||||
background-color: #353b43;
|
||||
font-family: "Anaheim", sans-serif;
|
||||
color: #737f8a;
|
||||
color: #fff;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
@ -163,7 +163,7 @@ a:hover {
|
||||
}
|
||||
|
||||
.bg-one {
|
||||
background-color: #353b43;
|
||||
background-color: #004938;
|
||||
}
|
||||
|
||||
.bg-dark {
|
||||
@ -323,7 +323,7 @@ a:hover {
|
||||
}
|
||||
|
||||
.section-bg {
|
||||
background: #292F36;
|
||||
background: #002d22;
|
||||
}
|
||||
|
||||
.overly {
|
||||
@ -407,16 +407,20 @@ a:hover {
|
||||
Navigation
|
||||
==================================================================*/
|
||||
.navigation {
|
||||
background-color: #1d2024;
|
||||
background-color: #004938;
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
font-family: "ClashGrotesk-Variable", sans-serif;
|
||||
font-variation-settings: 'wght' 600.0;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.navbar-dark .navbar-nav .active>.nav-link,
|
||||
.navbar-dark .navbar-nav .nav-link,
|
||||
.navbar-dark .navbar-nav .nav-link.active,
|
||||
.navbar-dark .navbar-nav .nav-link.show,
|
||||
.navbar-dark .navbar-nav .show>.nav-link {
|
||||
color: #57cbcc;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.navbar-toggler:focus {
|
||||
@ -445,7 +449,6 @@ a:hover {
|
||||
|
||||
.hero-area:before {
|
||||
content: '';
|
||||
background: rgba(0, 0, 0, 0.63);
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
@ -947,10 +950,7 @@ a:hover {
|
||||
==================================================================*/
|
||||
.service-block {
|
||||
padding: 60px 20px;
|
||||
border-left: 1px solid rgba(236, 239, 241, 0.07);
|
||||
border-top: 1px solid rgba(236, 239, 241, 0.07);
|
||||
margin-bottom: 40px;
|
||||
box-shadow: 2px 2px 5px rgba(44, 44, 44, 0.3), 13px 13px 0 rgba(255, 255, 255, 0.7);
|
||||
}
|
||||
|
||||
.service-block .service-icon {
|
||||
@ -958,6 +958,10 @@ a:hover {
|
||||
font-size: 50px;
|
||||
}
|
||||
|
||||
.service-block h3 {
|
||||
color: #d8993a;
|
||||
}
|
||||
|
||||
/*=================================================================
|
||||
Services section 2
|
||||
==================================================================*/
|
||||
|
@ -1,6 +1,6 @@
|
||||
<section class="fixed-top navigation">
|
||||
<section class="fixed-top navigation py-3">
|
||||
<div class="container">
|
||||
<nav class="navbar navbar-expand-lg navbar-dark">
|
||||
<nav class="navbar navbar-expand-sm navbar-dark">
|
||||
<a class="navbar-brand p-0" href="{{ .Site.BaseURL | relLangURL }}">
|
||||
{{ if site.Params.logo }}
|
||||
<img class="lozad" data-src="{{ site.Params.logo | absURL }}" alt="{{ .Site.Title }}" height="42">
|
||||
|
@ -19,10 +19,12 @@
|
||||
{{ range .service_item}}
|
||||
{{"<!-- Single Service Item -->" | safeHTML }}
|
||||
<article class="col-lg-4 col-md-6 col-12 wow fadeInUp" data-wow-duration="500ms">
|
||||
<div class="service-block text-center">
|
||||
<div class="service-block">
|
||||
{{ if .icon }}
|
||||
<div class="service-icon text-center">
|
||||
<i class="{{ .icon }}"></i>
|
||||
</div>
|
||||
{{ end }}
|
||||
<h3>{{ .name | markdownify }}</h3>
|
||||
<p>{{ .content | markdownify }}</p>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user