parent
8ef2aba07f
commit
c371330d73
@ -1,104 +1,81 @@ |
||||
.breadCrumb{ |
||||
.breadCrumb { |
||||
padding: 200px 0 0; |
||||
position: relative; |
||||
.svg-img{ |
||||
.svg-img { |
||||
position: absolute; |
||||
bottom: -35%; |
||||
left: -7%; |
||||
animation: move_top 5s infinite linear; |
||||
@include desktop{ |
||||
@include desktop { |
||||
display: none; |
||||
} |
||||
} |
||||
.animate-shape{ |
||||
.animate-shape { |
||||
position: absolute; |
||||
bottom: -60%; |
||||
right: 2%; |
||||
height: 300px; |
||||
width: 300px; |
||||
svg{ |
||||
svg { |
||||
width: 100%; |
||||
} |
||||
@include desktop{ |
||||
@include desktop { |
||||
display: none; |
||||
} |
||||
} |
||||
.animate-pattern{ |
||||
.animate-pattern { |
||||
position: absolute; |
||||
bottom: -40%; |
||||
right: 10%; |
||||
height: 100px; |
||||
width: 100px; |
||||
animation: move_top 3s infinite linear; |
||||
img{ |
||||
img { |
||||
height: 100%; |
||||
width: 100%; |
||||
} |
||||
@include desktop{ |
||||
@include desktop { |
||||
display: none; |
||||
} |
||||
} |
||||
@include desktop{ |
||||
@include desktop { |
||||
padding: 120px 0 0; |
||||
} |
||||
&__title{ |
||||
&__title { |
||||
font-size: 48px; |
||||
font-family: $primary-font; |
||||
color: $secondary-color; |
||||
line-height: 1; |
||||
margin: 0 0 30px 0; |
||||
@include tablet{ |
||||
font-size: 36px; |
||||
} |
||||
@include mobile{ |
||||
font-size: 30px; |
||||
} |
||||
} |
||||
.breadcrumb{ |
||||
.breadcrumb { |
||||
background: none; |
||||
margin: 0; |
||||
padding: 0; |
||||
&-item{ |
||||
a{ |
||||
font-family: $secondary-font; |
||||
color: $secondary-color; |
||||
font-size: 17px; |
||||
&-item { |
||||
a { |
||||
color: $secondary; |
||||
text-decoration: none; |
||||
@include mobile{ |
||||
font-size: 14px; |
||||
} |
||||
@include mobile-xs{ |
||||
font-size: 12px; |
||||
} |
||||
} |
||||
&.active{ |
||||
font-family: $secondary-font; |
||||
color: $secondary-color; |
||||
@include mobile{ |
||||
font-size: 14px; |
||||
} |
||||
@include mobile-xs{ |
||||
font-size: 12px; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
.breadcrumb-item+.breadcrumb-item::before{ |
||||
content: '-'; |
||||
color: $secondary-color; |
||||
font-size: 17px; |
||||
padding-right: 10px; |
||||
@include mobile{ |
||||
font-size: 14px; |
||||
} |
||||
@include mobile-xs{ |
||||
padding-right: 0px; |
||||
} |
||||
} |
||||
.breadcrumb-item+.breadcrumb-item{ |
||||
padding-left: 10px; |
||||
@include mobile-xs{ |
||||
padding-right: 0px; |
||||
} |
||||
} |
||||
&.active { |
||||
color: $secondary; |
||||
} |
||||
} |
||||
} |
||||
.breadcrumb-item + .breadcrumb-item::before { |
||||
content: "-"; |
||||
// color: $secondary-color; |
||||
// font-size: 17px; |
||||
// padding-right: 10px; |
||||
// @include mobile { |
||||
// font-size: 14px; |
||||
// } |
||||
// @include mobile-xs { |
||||
// padding-right: 0px; |
||||
// } |
||||
} |
||||
// .breadcrumb-item + .breadcrumb-item { |
||||
// padding-left: 10px; |
||||
// @include mobile-xs { |
||||
// padding-right: 0px; |
||||
// } |
||||
// } |
||||
} |
@ -1,34 +1,27 @@ |
||||
{{ $pag := $.Paginator }} |
||||
{{ if gt $pag.TotalPages 1 }} |
||||
<div class="blog-page__pagination"> |
||||
<div class="pagination"> |
||||
<nav aria-label="Page navigation" class="w-100"> |
||||
<ul class="pagination justify-content-center pagination-lg"> |
||||
{{ range $pag.Pagers }} |
||||
{{ if eq . $pag }} |
||||
<li class="active"> |
||||
<a href="{{ .URL }}">{{ .PageNumber }}</a> |
||||
<li class="page-item active"> |
||||
<a class="page-link" href="{{ .URL }}">{{ .PageNumber }}</a> |
||||
</li> |
||||
{{ else }} |
||||
<li> |
||||
<a href="{{ .URL }}">{{ .PageNumber }}</a> |
||||
<li class="page-item"> |
||||
<a class="page-link" href="{{ .URL }}">{{ .PageNumber }}</a> |
||||
</li> |
||||
{{ end }} |
||||
{{ end }} |
||||
|
||||
{{ if $pag.HasNext }} |
||||
<li class="page-item"> |
||||
<a href="{{ $pag.Next.URL }}" rel="next" class="page-link"> |
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20.657" height="11.314" viewBox="0 0 20.657 11.314"> |
||||
<g fill="#fff" data-name="Group 12"> |
||||
<path d="M0 4.657h18v2H0z" data-name="Rectangle 2400" /> |
||||
<path d="M13.586 9.9l5.6568542-5.6568542 1.4142136 1.4142135-5.6568542 5.6568543z" |
||||
data-name="Rectangle 2401" /> |
||||
<path d="M15 0l5.6568542 5.6568542-1.4142135 1.4142136-5.6568543-5.6568542z" data-name="Rectangle 2402" /> |
||||
</g> |
||||
</svg> |
||||
<a class="page-link" href="{{ $pag.Next.URL }}" rel="next"> |
||||
→ |
||||
</a> |
||||
</li> |
||||
{{ end }} |
||||
</div> |
||||
</ul> |
||||
<!-- </nav> --> |
||||
</div> |
||||
</nav> |
||||
{{ end }} |
Loading…
Reference in new issue