Init
This commit is contained in:
175
themes/agico-hugo/assets/scss/_buttons.scss
Executable file
175
themes/agico-hugo/assets/scss/_buttons.scss
Executable file
@@ -0,0 +1,175 @@
|
||||
.btn {
|
||||
font-size: 16px;
|
||||
//font-family: $font-primary;
|
||||
/* text-transform: capitalize; */
|
||||
padding: 14px 45px;
|
||||
border-radius: 45px;
|
||||
font-weight: 500;
|
||||
border: 2px solid;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
transition: .3s ease;
|
||||
overflow: hidden;
|
||||
text-decoration: none !important;
|
||||
|
||||
&:focus,
|
||||
&:hover {
|
||||
outline: 0;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
&:active {
|
||||
box-shadow: none;
|
||||
background: none;
|
||||
}
|
||||
|
||||
img,
|
||||
svg,
|
||||
i {
|
||||
margin-right: 10px;
|
||||
font-size: 20px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
img {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-lg {
|
||||
padding: 20px 40px;
|
||||
}
|
||||
|
||||
.btn-sm {
|
||||
padding: 10px 20px;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
border: 0;
|
||||
color: $white;
|
||||
background-color: transparent !important;
|
||||
|
||||
&:not(&[type="submit"]) {
|
||||
border: 2px solid $color-secondary !important;
|
||||
|
||||
&:hover {
|
||||
border: 2px solid $color-secondary !important;
|
||||
color: $color-primary !important;
|
||||
|
||||
&:after {
|
||||
left: 102%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 102%;
|
||||
height: 100%;
|
||||
background: $btn-gradient-primary;
|
||||
z-index: -1;
|
||||
transition: ease 0.3s;
|
||||
}
|
||||
|
||||
&.btn-dark {
|
||||
&:hover {
|
||||
color: $color-secondary !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.btn-outline-primary {
|
||||
color: $color-secondary;
|
||||
border: 2px solid white !important;
|
||||
|
||||
&:hover {
|
||||
color: $white !important;
|
||||
background: none !important;
|
||||
border: 2px solid $color-secondary;
|
||||
|
||||
i {
|
||||
color: $white !important;
|
||||
}
|
||||
|
||||
&:after {
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
&:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: -102%;
|
||||
width: 102%;
|
||||
height: 100%;
|
||||
background: $btn-gradient-primary;
|
||||
z-index: -1;
|
||||
transition: ease 0.3s;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-white {
|
||||
background: $white !important;
|
||||
color: $color-primary !important;
|
||||
border: 1px solid $white !important;
|
||||
|
||||
&:hover {
|
||||
color: $white !important;
|
||||
|
||||
i {
|
||||
color: $white !important;
|
||||
}
|
||||
|
||||
&:after {
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
&:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: -102%;
|
||||
width: 102%;
|
||||
height: 100%;
|
||||
background: $color-primary !important;
|
||||
z-index: -1;
|
||||
transition: ease 0.3s;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-outline-white {
|
||||
color: $white !important;
|
||||
border: 1px solid $white !important;
|
||||
|
||||
&:hover {
|
||||
color: $color-primary !important;
|
||||
background: none !important;
|
||||
border: 2px solid $color-secondary;
|
||||
|
||||
i {
|
||||
color: $color-primary !important;
|
||||
}
|
||||
|
||||
&:after {
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
&:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: -102%;
|
||||
width: 102%;
|
||||
height: 100%;
|
||||
background: $white;
|
||||
z-index: -1;
|
||||
transition: ease 0.3s;
|
||||
}
|
||||
}
|
||||
869
themes/agico-hugo/assets/scss/_common.scss
Executable file
869
themes/agico-hugo/assets/scss/_common.scss
Executable file
@@ -0,0 +1,869 @@
|
||||
@keyframes fadeInUp {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(10px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
/* Openklap-animatie */
|
||||
.product-sections {
|
||||
overflow: hidden;
|
||||
max-height: 0;
|
||||
opacity: 0;
|
||||
transition: max-height 0.45s ease, opacity 0.3s ease;
|
||||
}
|
||||
.product-sections.open {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.ml-auto {
|
||||
margin-left: auto !important;
|
||||
}
|
||||
|
||||
|
||||
:root {
|
||||
--bs-border-color: #{$border-color} !important;
|
||||
}
|
||||
|
||||
a,
|
||||
a:hover,
|
||||
a:focus {
|
||||
text-decoration: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
a,
|
||||
button,
|
||||
select {
|
||||
cursor: pointer;
|
||||
transition: 0.3s ease;
|
||||
|
||||
&:focus {
|
||||
outline: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.fas {
|
||||
font-size: 24px;
|
||||
color: $color-primary !important;
|
||||
|
||||
}
|
||||
|
||||
a.text-color,
|
||||
a.text-dark,
|
||||
a.text-light,
|
||||
a {
|
||||
&:hover {
|
||||
color: $color-primary;
|
||||
}
|
||||
}
|
||||
|
||||
section {
|
||||
overflow: hidden;
|
||||
|
||||
&.subscription {
|
||||
overflow: inherit;
|
||||
}
|
||||
}
|
||||
.modal-content {
|
||||
.modal-close {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
position: absolute;
|
||||
right: 0px;
|
||||
color: white;
|
||||
font-size: 16px;
|
||||
border-radius: 8px;
|
||||
background: $bg-secondary;
|
||||
top: -45px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
border: none;
|
||||
outline: none;
|
||||
|
||||
svg {
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
&:hover svg {
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
iframe {
|
||||
width: 900px;
|
||||
margin: auto;
|
||||
height: 400px;
|
||||
}
|
||||
|
||||
// color
|
||||
.text-color {
|
||||
color: $text-color;
|
||||
}
|
||||
.text-light {
|
||||
color: $text-light !important;
|
||||
}
|
||||
.text-dark {
|
||||
color: $text-dark !important;
|
||||
}
|
||||
.text-secondary {
|
||||
color: $color-secondary !important;
|
||||
}
|
||||
.bg-gradient-primary {
|
||||
background: $bg-gradient-primary;
|
||||
}
|
||||
.bg-gradient-secondary {
|
||||
background: $bg-gradient-secondary;
|
||||
}
|
||||
.btn-primary-gradient {
|
||||
background: $btn-gradient-primary;
|
||||
}
|
||||
.bg-gradient-purple {
|
||||
background: linear-gradient(
|
||||
180deg,
|
||||
rgb(98, 90, 255) 20%,
|
||||
rgb(176, 37, 239) 100%
|
||||
);
|
||||
}
|
||||
.border-gray {
|
||||
border-color: rgb(137, 96, 212) !important;
|
||||
}
|
||||
.bg-gray {
|
||||
background: $gray;
|
||||
}
|
||||
.bg-gray-light {
|
||||
background: #f5f6f7;
|
||||
}
|
||||
.bg-secondary {
|
||||
background: $bg-secondary !important;
|
||||
}
|
||||
.badge-light {
|
||||
background: #edeff2;
|
||||
}
|
||||
.border-color {
|
||||
border-color: $border-color !important;
|
||||
}
|
||||
.overflow-hidden {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
// shadow
|
||||
.shadow {
|
||||
box-shadow: 0px 15px 15px 0px rgba(32, 116, 149, 0.3);
|
||||
}
|
||||
|
||||
// box-shadow
|
||||
.shadow-sm {
|
||||
box-shadow: 0px 5px 15px 0px rgba(51, 77, 128, 0.12) !important;
|
||||
}
|
||||
.zindex-1 {
|
||||
z-index: 1;
|
||||
}
|
||||
.screen-reader-text {
|
||||
border: 0;
|
||||
clip: rect(1px, 1px, 1px, 1px);
|
||||
-webkit-clip-path: inset(50%);
|
||||
clip-path: inset(50%);
|
||||
height: 1px;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
position: absolute !important;
|
||||
width: 1px;
|
||||
word-wrap: normal !important;
|
||||
word-break: normal;
|
||||
}
|
||||
|
||||
/* overlay */
|
||||
.overlay {
|
||||
position: relative;
|
||||
|
||||
&::before {
|
||||
position: absolute;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
left: 0;
|
||||
top: 0;
|
||||
background: $black;
|
||||
content: "";
|
||||
opacity: 0.7;
|
||||
border-radius: inherit;
|
||||
}
|
||||
}
|
||||
.overlay-gradient {
|
||||
position: relative;
|
||||
|
||||
&::before {
|
||||
position: absolute;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
left: 0;
|
||||
top: 0;
|
||||
background-image: $bg-gradient-primary;
|
||||
content: "";
|
||||
opacity: 0.7;
|
||||
border-radius: inherit;
|
||||
}
|
||||
}
|
||||
|
||||
/* preloader */
|
||||
.preloader {
|
||||
background-color: #0e1e2f !important;
|
||||
z-index: 99999 !important;
|
||||
img {
|
||||
max-width: 500px;
|
||||
}
|
||||
}
|
||||
|
||||
// background img
|
||||
.bg-cover {
|
||||
background-repeat: no-repeat;
|
||||
background-position: center bottom;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
// border-radius
|
||||
.rounded-xl {
|
||||
border-radius: 45px;
|
||||
}
|
||||
.rounded-lg {
|
||||
border-radius: 20px;
|
||||
}
|
||||
.rounded-sm {
|
||||
border-radius: 15px;
|
||||
}
|
||||
.rounded-xs {
|
||||
border-radius: 10px;
|
||||
}
|
||||
.rounded-top-xs {
|
||||
border-top-right-radius: 10px;
|
||||
border-top-left-radius: 10px;
|
||||
}
|
||||
.rounded-top-sm {
|
||||
border-top-right-radius: 15px;
|
||||
border-top-left-radius: 15px;
|
||||
}
|
||||
.rounded-top-lg {
|
||||
border-top-right-radius: 20px;
|
||||
border-top-left-radius: 20px;
|
||||
}
|
||||
|
||||
// font-weight
|
||||
.font-weight-medium {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
// transition
|
||||
.transition {
|
||||
transition: ease 0.3s;
|
||||
}
|
||||
|
||||
// section
|
||||
.section {
|
||||
padding-top: 110px;
|
||||
padding-bottom: 110px;
|
||||
|
||||
@include desktop {
|
||||
padding-top: 100px;
|
||||
padding-bottom: 100px;
|
||||
}
|
||||
|
||||
&-lg {
|
||||
padding-top: 250px;
|
||||
padding-bottom: 250px;
|
||||
|
||||
&-bottom {
|
||||
padding-bottom: 150px;
|
||||
|
||||
@include desktop {
|
||||
padding-bottom: 150px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&-sm {
|
||||
padding-top: 70px;
|
||||
padding-bottom: 70px;
|
||||
}
|
||||
|
||||
&-title {
|
||||
margin-bottom: 38px;
|
||||
}
|
||||
}
|
||||
.subtitle {
|
||||
/* text-transform: capitalize; */
|
||||
font-size: 18px;
|
||||
color: $text-color;
|
||||
//font-family: $font-primary;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.sticky-top {
|
||||
top: 100px;
|
||||
}
|
||||
|
||||
// pulse animtion
|
||||
.video-container {
|
||||
min-height: 400px;
|
||||
}
|
||||
|
||||
.pulse-box {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
|
||||
/* pulse in SVG */
|
||||
svg.pulse-svg {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
svg.pulse-svg .first-circle {
|
||||
fill: $white;
|
||||
transform: scale(0.1);
|
||||
transform-origin: center center;
|
||||
animation: pulse-me 3s linear infinite;
|
||||
}
|
||||
|
||||
svg.pulse-svg .second-circle {
|
||||
fill: $white;
|
||||
transform: scale(0.1);
|
||||
transform-origin: center center;
|
||||
animation: pulse-me 3s linear infinite;
|
||||
animation-delay: 1s;
|
||||
}
|
||||
|
||||
svg.pulse-svg .third-circle {
|
||||
fill: $white;
|
||||
transform: scale(0.1);
|
||||
transform-origin: center center;
|
||||
animation: pulse-me 3s linear infinite;
|
||||
animation-delay: 2s;
|
||||
}
|
||||
|
||||
/* pulse in CSS */
|
||||
.pulse-css {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
border-radius: 15px;
|
||||
background: $white;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.pulse-css:before,
|
||||
.pulse-css:after {
|
||||
content: "";
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
border-radius: 15px;
|
||||
background-color: $white;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
margin: auto;
|
||||
transform: scale(0.5);
|
||||
transform-origin: center center;
|
||||
animation: pulse-me 3s linear infinite;
|
||||
}
|
||||
|
||||
.pulse-css:after {
|
||||
animation-delay: 2s;
|
||||
}
|
||||
|
||||
@keyframes pulse-me {
|
||||
0% {
|
||||
transform: scale(0.5);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 0.1;
|
||||
}
|
||||
|
||||
70% {
|
||||
opacity: 0.09;
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: scale(3);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
// pulse animtion
|
||||
|
||||
/* social icon */
|
||||
.social-icons {
|
||||
li {
|
||||
a {
|
||||
i {
|
||||
width: 46px !important;
|
||||
padding: 13px;
|
||||
height: 46px;
|
||||
line-height: 46px;
|
||||
color: $white;
|
||||
text-align: center;
|
||||
border: 2px solid $border-color;
|
||||
display: block;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
@extend .transition;
|
||||
|
||||
&:hover {
|
||||
background-color: $color-primary;
|
||||
border: 2px solid $color-primary;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* / social icon */
|
||||
|
||||
/* list style */
|
||||
.list-styled {
|
||||
padding-left: 0;
|
||||
|
||||
li {
|
||||
position: relative;
|
||||
list-style-type: none;
|
||||
|
||||
svg {
|
||||
margin-right: 8px;
|
||||
transform: scale(0.8);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
&::before {
|
||||
color: $color-primary !important;
|
||||
}
|
||||
}
|
||||
|
||||
&.text-light {
|
||||
&::before {
|
||||
color: $text-light;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.list-hover-underline {
|
||||
li {
|
||||
a {
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.list-bordered {
|
||||
li {
|
||||
&:not(:last-child) {
|
||||
border-bottom: 1px solid #e5e5e5;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* /list style */
|
||||
|
||||
/* page title */
|
||||
.page-title {
|
||||
& > div {
|
||||
background: $color-primary;
|
||||
opacity: 0.95;
|
||||
|
||||
& > div {
|
||||
padding: 220px 0 100px;
|
||||
}
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 50px;
|
||||
}
|
||||
|
||||
p {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
.breadcrumb-item + .breadcrumb-item::before {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
/* /page title */
|
||||
|
||||
/* form style */
|
||||
input[type="search"]::-webkit-search-decoration,
|
||||
input[type="search"]::-webkit-search-cancel-button,
|
||||
input[type="search"]::-webkit-search-results-button,
|
||||
input[type="search"]::-webkit-search-results-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
.form-control {
|
||||
border: 0;
|
||||
height: 60px;
|
||||
padding: 0 25px;
|
||||
border-radius: 50px;
|
||||
|
||||
&:focus {
|
||||
outline: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
}
|
||||
|
||||
textarea.form-control {
|
||||
border-radius: 20px;
|
||||
height: 150px;
|
||||
padding: 25px;
|
||||
resize: none;
|
||||
}
|
||||
|
||||
/* /form style */
|
||||
.badge {
|
||||
margin-bottom: 20px;
|
||||
font-weight: 600;
|
||||
font-size: 15px;
|
||||
padding: 5px 10px;
|
||||
|
||||
&.added {
|
||||
background: #3778ff;
|
||||
color: $white;
|
||||
}
|
||||
|
||||
&.fixed {
|
||||
background: #f54773;
|
||||
color: $white;
|
||||
}
|
||||
|
||||
&.changed {
|
||||
background: #3aaa55;
|
||||
color: $white;
|
||||
}
|
||||
|
||||
&.depricated {
|
||||
background: #343434;
|
||||
color: $white;
|
||||
}
|
||||
|
||||
&.removed {
|
||||
background: #3bbfe4;
|
||||
color: $white;
|
||||
}
|
||||
|
||||
&.security {
|
||||
background: #f53535;
|
||||
color: $white;
|
||||
}
|
||||
|
||||
&.unreleased {
|
||||
background: #a037ff;
|
||||
color: $white;
|
||||
}
|
||||
}
|
||||
.content {
|
||||
* {
|
||||
word-break: break-word;
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: underline;
|
||||
color: $color-primary;
|
||||
}
|
||||
|
||||
ol {
|
||||
padding-left: 20px;
|
||||
|
||||
li {
|
||||
margin-bottom: 6px;
|
||||
margin-left: 30px;
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
padding-left: 20px;
|
||||
|
||||
li {
|
||||
margin-bottom: 6px;
|
||||
list-style-type: none;
|
||||
margin-left:30px;
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
padding-left: 0;
|
||||
margin-bottom: 20px;
|
||||
|
||||
li {
|
||||
padding-left: 20px;
|
||||
position: relative;
|
||||
|
||||
&::before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
height: 8px;
|
||||
width: 8px;
|
||||
border-radius: 50%;
|
||||
background: $color-primary;
|
||||
left: 3px;
|
||||
top: 8px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
hr {
|
||||
margin: 50px 0;
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
margin-bottom: 1rem;
|
||||
border: 1px solid #eeeeee;
|
||||
}
|
||||
|
||||
table td,
|
||||
table th {
|
||||
padding: 0.75rem;
|
||||
vertical-align: top;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
tr:not(:last-child) {
|
||||
border-bottom: 1px solid #eeeeee;
|
||||
}
|
||||
|
||||
th {
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
thead {
|
||||
background: $gray;
|
||||
margin-bottom: 0;
|
||||
|
||||
tr {
|
||||
border-bottom: 1px solid #eeeeee;
|
||||
}
|
||||
}
|
||||
|
||||
tbody {
|
||||
background: #fff;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
font-size: 20px !important;
|
||||
color: $text-color;
|
||||
padding: 20px 40px;
|
||||
border-left: 2px solid $color-primary;
|
||||
margin: 40px 0;
|
||||
font-weight: 600;
|
||||
|
||||
p {
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
pre {
|
||||
display: block;
|
||||
padding: 9.5px;
|
||||
margin: 10px 0px 10px;
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
code {
|
||||
margin-bottom: 0 !important;
|
||||
font-size: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.accordion {
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
.accordion-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 1rem;
|
||||
font-size: 1.1rem;
|
||||
width: 100%;
|
||||
font-weight: 600;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.accordion-icon {
|
||||
width: 0.78em;
|
||||
height: 0.78em;
|
||||
transform: rotate(-90deg);
|
||||
transition: transform 0.2s ease;
|
||||
}
|
||||
|
||||
.accordion-content {
|
||||
max-height: 0;
|
||||
overflow: hidden;
|
||||
padding: 0 1rem;
|
||||
}
|
||||
|
||||
.accordion.active .accordion-icon {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
.accordion.active .accordion-content {
|
||||
max-height: max-content;
|
||||
}
|
||||
|
||||
.pricing-table {
|
||||
|
||||
border-radius:24px;
|
||||
/* border:4px solid white;*/
|
||||
|
||||
p {
|
||||
margin:0;
|
||||
}
|
||||
|
||||
small {
|
||||
font-style: italic;
|
||||
font-size: 0.8em;
|
||||
}
|
||||
|
||||
td.active {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
tbody {
|
||||
border-radius: 16px;
|
||||
}
|
||||
|
||||
tbody td,
|
||||
tbody th {
|
||||
border: 1px solid #efefef;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
td span {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
thead td,
|
||||
thead th {
|
||||
border-bottom-width: 1px;
|
||||
background: $color-primary;
|
||||
border-color: $color-primary;
|
||||
padding:20px;
|
||||
}
|
||||
|
||||
thead td:first-child,
|
||||
thead th:first-child,
|
||||
tr td:first-child {
|
||||
border-top-color: transparent;
|
||||
border-left-color: transparent;
|
||||
border-top-left-radius: 32px;
|
||||
}
|
||||
|
||||
thead td:last-child,
|
||||
thead th:last-child,
|
||||
tr td:last-child {
|
||||
border-top-color: transparent;
|
||||
border-right-color: transparent;
|
||||
border-top-right-radius: 32px;
|
||||
}
|
||||
|
||||
@include desktop {
|
||||
tr {
|
||||
border: 1px solid #ccc;
|
||||
}
|
||||
|
||||
td,
|
||||
th {
|
||||
padding: 10px 20px;
|
||||
width: initial;
|
||||
}
|
||||
|
||||
td {
|
||||
border: none;
|
||||
border-bottom: 1px solid #eee;
|
||||
position: relative;
|
||||
padding-left: 50%;
|
||||
}
|
||||
|
||||
td:before {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
left: 20px;
|
||||
width: 45%;
|
||||
padding-right: 10px;
|
||||
white-space: nowrap;
|
||||
font-weight: bold;
|
||||
content: attr(data-label);
|
||||
}
|
||||
}
|
||||
|
||||
@include mobile {
|
||||
td {
|
||||
padding-left: 40%;
|
||||
}
|
||||
|
||||
td:before {
|
||||
width: 39%;
|
||||
}
|
||||
.pricing-table td { padding-left: 45%; } /* iets compacter op hele kleine schermen */
|
||||
.pricing-table td:before { width: 42%; }
|
||||
}
|
||||
}
|
||||
|
||||
.content img {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
.px-6 {
|
||||
padding-left: ($spacer * 4) !important;
|
||||
padding-right: ($spacer * 4) !important;
|
||||
}
|
||||
|
||||
.img-product {
|
||||
max-height:80px;
|
||||
object-fit: contain;
|
||||
object-position: left;
|
||||
}
|
||||
|
||||
.g-8 {
|
||||
--bs-gutter-x: 3rem;
|
||||
}
|
||||
|
||||
sup, .footnote-ref {
|
||||
font-size: 0.8em;
|
||||
//vertical-align: super;
|
||||
}
|
||||
.footnote-ref::before {
|
||||
content: "[";
|
||||
}
|
||||
.footnote-ref::after {
|
||||
content: "]";
|
||||
}
|
||||
|
||||
.footnotes ol li,
|
||||
.footnotes ol li p {
|
||||
font-size: 0.85em;
|
||||
line-height: 0.9em;
|
||||
}
|
||||
|
||||
.cookie-box {
|
||||
color: $text-dark;
|
||||
}
|
||||
|
||||
.fa-xs {
|
||||
font-size: 1em;
|
||||
padding-right:4px;
|
||||
}
|
||||
34
themes/agico-hugo/assets/scss/_mixins.scss
Executable file
34
themes/agico-hugo/assets/scss/_mixins.scss
Executable file
@@ -0,0 +1,34 @@
|
||||
@mixin mobile-xs{
|
||||
@media(max-width:400px){
|
||||
@content;
|
||||
}
|
||||
}
|
||||
@mixin mobile{
|
||||
@media(max-width:575px){
|
||||
@content;
|
||||
}
|
||||
}
|
||||
@mixin tablet{
|
||||
@media(max-width:767px){
|
||||
@content;
|
||||
}
|
||||
}
|
||||
@mixin desktop{
|
||||
@media(max-width:991px){
|
||||
@content;
|
||||
}
|
||||
}
|
||||
@mixin desktop-lg{
|
||||
@media(max-width:1200px){
|
||||
@content;
|
||||
}
|
||||
}
|
||||
@mixin desktop-xl{
|
||||
@media(max-width:1650px){
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin size($size){
|
||||
width: $size; height: $size;
|
||||
}
|
||||
162
themes/agico-hugo/assets/scss/_typography.scss
Executable file
162
themes/agico-hugo/assets/scss/_typography.scss
Executable file
@@ -0,0 +1,162 @@
|
||||
/* 400 normal */
|
||||
@font-face {
|
||||
font-family: "Work Sans";
|
||||
src: url("/fonts/WorkSans-Regular.woff2") format("woff2");
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
/* 400 italic */
|
||||
@font-face {
|
||||
font-family: "Work Sans";
|
||||
src: url("/fonts/WorkSans-Italic.woff2") format("woff2");
|
||||
font-weight: 400;
|
||||
font-style: italic;
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
/* 600 (Semibold) */
|
||||
@font-face {
|
||||
font-family: "Work Sans";
|
||||
src: url("/fonts/WorkSans-SemiBold.woff2") format("woff2");
|
||||
font-weight: 600;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
/* 800 (ExtraBold) */
|
||||
@font-face {
|
||||
font-family: "Work Sans";
|
||||
src: url("/fonts/WorkSans-ExtraBold.woff2") format("woff2");
|
||||
font-weight: 800;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
:root {
|
||||
--font-primary: "Work Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
|
||||
}
|
||||
|
||||
|
||||
body {
|
||||
line-height: 1.6;
|
||||
//font-family: $font_secondary;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-size: 16px;
|
||||
color: $text-color;
|
||||
font-family: var(--font-primary);
|
||||
font-synthesis: weight style;
|
||||
}
|
||||
|
||||
p,
|
||||
.paragraph {
|
||||
font-weight: 400;
|
||||
color: $text-color;
|
||||
font-size: 16px;
|
||||
line-height: 1.6;
|
||||
transition: 0.3s;
|
||||
//font-family: $font_secondary;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
color: $text-dark;
|
||||
//font-family: $font-primary;
|
||||
/* text-transform: capitalize; */
|
||||
font-weight: 800;
|
||||
line-height: 1.2;
|
||||
transition: 0.3s ease;
|
||||
}
|
||||
|
||||
h6 {
|
||||
/* padding-top:10px; */
|
||||
}
|
||||
|
||||
h1,
|
||||
.h1 {
|
||||
font-size: 40px;
|
||||
}
|
||||
|
||||
// List in descending order to prevent extra sort function
|
||||
$type-levels: 6, 5, 4, 3, 2;
|
||||
|
||||
@each $level in $type-levels {
|
||||
$font-size: $font-size * $font-scale;
|
||||
|
||||
// Output heading styles
|
||||
h#{$level},
|
||||
.h#{$level} {
|
||||
font-size: $font-size;
|
||||
line-height: calc(2px + 2ex + 2px);
|
||||
margin-bottom: 0.65em;
|
||||
|
||||
// responsive for h1, h2, h3, h4
|
||||
&:not(h5, .h5, h6, .h6) {
|
||||
@include desktop {
|
||||
font-size: calc(#{$font-size} * 0.9);
|
||||
margin-bottom: 0.55em;
|
||||
}
|
||||
|
||||
@include tablet {
|
||||
font-size: calc(#{$font-size} * 0.8);
|
||||
}
|
||||
}
|
||||
|
||||
// responsive for h5, h6
|
||||
@include desktop {
|
||||
font-size: calc(#{$font-size} * 0.95);
|
||||
margin-bottom: 0.55em;
|
||||
}
|
||||
|
||||
@include tablet {
|
||||
font-size: calc(#{$font-size} * 0.9);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.text-white a,
|
||||
.text-white a:hover,
|
||||
.text-white a:focus {
|
||||
color: $white;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
input[type="checkbox"] {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
border: 2px solid #ccc;
|
||||
border-radius: 4px;
|
||||
background: #fff;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
transition: all 0.15s ease-in-out;
|
||||
border-radius: 20px;
|
||||
}
|
||||
|
||||
input[type="checkbox"]:hover,
|
||||
input[type="checkbox"]:focus {
|
||||
border-color: #207495;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
input[type="checkbox"]:checked {
|
||||
background-color: #207495;
|
||||
border-color: #207495;
|
||||
}
|
||||
|
||||
input[type="checkbox"]:checked::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 1px;
|
||||
left: 4px;
|
||||
width: 8px;
|
||||
height: 12px;
|
||||
border: solid #fff;
|
||||
border-width: 0 2px 2px 0;
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
47
themes/agico-hugo/assets/scss/style.scss
Executable file
47
themes/agico-hugo/assets/scss/style.scss
Executable file
@@ -0,0 +1,47 @@
|
||||
// Color Variables
|
||||
{{ with site.Params.variables }}
|
||||
$color-primary: {{.color_primary}};
|
||||
$color-secondary: {{.color_secondary}};
|
||||
$bg-secondary: {{.bg_secondary}};
|
||||
|
||||
$text-dark: {{.text_dark}};
|
||||
$text-light: {{.text_light}};
|
||||
$text-color: {{.text_color}};
|
||||
$border-color: {{.border_color}};
|
||||
$border-light: {{.border_light}};
|
||||
|
||||
$bg-gradient-primary: {{.bg_gradient_primary}};
|
||||
$bg-gradient-secondary: {{.bg_gradient_secondary}};
|
||||
$btn-gradient-primary: {{.btn_gradient_primary}};
|
||||
|
||||
$black: {{.black}};
|
||||
$white: {{.white}};
|
||||
$gray: {{.gray}};
|
||||
|
||||
// Font Variables
|
||||
$font-size: {{.font_size | default "16px"}};
|
||||
$font-scale: {{.font_scale | default "1.25"}};
|
||||
$font-primary: '{{ replaceRE ":[ital,]*wght@[0-9,;]+" "" .font_primary }}', {{.font_primary_type}};
|
||||
$font-secondary: '{{ replaceRE ":[ital,]*wght@[0-9,;]+" "" .font_secondary }}', {{.font_secondary_type}};
|
||||
$font-icon: '{{.font_icon}}';
|
||||
{{ end }}
|
||||
|
||||
@import 'templates/bootstrap';
|
||||
@import 'mixins';
|
||||
@import 'typography';
|
||||
@import 'buttons';
|
||||
@import 'common';
|
||||
@import 'templates/navigation';
|
||||
@import 'templates/banner';
|
||||
@import 'templates/homepage';
|
||||
@import 'templates/card';
|
||||
@import 'templates/team';
|
||||
@import 'templates/blog';
|
||||
@import 'templates/footer';
|
||||
@import 'preloader';
|
||||
@import 'accordion';
|
||||
@import 'notice';
|
||||
|
||||
{{ if site.Params.image_gallery }}
|
||||
@import 'gallery';
|
||||
{{ end }}
|
||||
62
themes/agico-hugo/assets/scss/templates/_banner.scss
Executable file
62
themes/agico-hugo/assets/scss/templates/_banner.scss
Executable file
@@ -0,0 +1,62 @@
|
||||
// banner css start
|
||||
section.hero-area {
|
||||
padding: 200px 0 175px;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
background-position: bottom center !important;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
|
||||
@include mobile-xs {
|
||||
padding: 190px 0 100px;
|
||||
}
|
||||
|
||||
@include desktop-xl {
|
||||
padding: 190px 0 155px;
|
||||
}
|
||||
|
||||
p {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
h1 {
|
||||
line-height: 68px;
|
||||
z-index: 1;
|
||||
font-size: 50px;
|
||||
|
||||
@include mobile-xs {
|
||||
font-size: 50px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.watermark {
|
||||
position: absolute;
|
||||
opacity: 0.07;
|
||||
top: 20px;
|
||||
left: 0;
|
||||
font-size: 200px;
|
||||
font-weight: 600;
|
||||
z-index: -1;
|
||||
color: inherit;
|
||||
|
||||
@include mobile {
|
||||
top: 0;
|
||||
font-size: 120px;
|
||||
}
|
||||
}
|
||||
|
||||
.watermark-sm {
|
||||
position: absolute;
|
||||
opacity: 0.07;
|
||||
top: -40px;
|
||||
left: 0;
|
||||
font-size: 110px;
|
||||
font-weight: 600;
|
||||
color: inherit;
|
||||
|
||||
@include mobile {
|
||||
top: 0;
|
||||
font-size: 100px;
|
||||
}
|
||||
}
|
||||
97
themes/agico-hugo/assets/scss/templates/_blog.scss
Executable file
97
themes/agico-hugo/assets/scss/templates/_blog.scss
Executable file
@@ -0,0 +1,97 @@
|
||||
/* sidebar */
|
||||
.widget {
|
||||
padding: 40px 30px 0;
|
||||
ul {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
.search-btn {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
background: transparent;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.tag-list {
|
||||
li {
|
||||
a {
|
||||
padding: 12px 15px;
|
||||
display: block;
|
||||
border-radius: 40px;
|
||||
|
||||
&:hover {
|
||||
background: $btn-gradient-primary;
|
||||
color: $white !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* sidebar */
|
||||
|
||||
.pagination .page-item .page-link {
|
||||
background: transparent;
|
||||
border: none;
|
||||
color: $color-primary;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
font-weight: 600;
|
||||
transition: .3s ease;
|
||||
height: 50px;
|
||||
text-align: center;
|
||||
border-radius: 10px;
|
||||
margin: 10px;
|
||||
width: 50px;
|
||||
line-height: 33px;
|
||||
box-shadow: 0px 5px 15px 0px rgba(51, 77, 128, 0.12)
|
||||
}
|
||||
|
||||
.pagination .page-item.active .page-link {
|
||||
background: $btn-gradient-primary;
|
||||
color: $white;
|
||||
box-shadow: 0px 15px 15px 0px rgba(8, 18, 109, 0.1)
|
||||
}
|
||||
|
||||
.pagination .page-item .page-link:hover {
|
||||
box-shadow: 0px 15px 15px 0px rgba(8, 18, 109, 0.1)
|
||||
}
|
||||
|
||||
/* blog single */
|
||||
|
||||
blockquote {
|
||||
box-shadow: inset 0px 7px 0px 0px rgba(255, 255, 255, 0.596);
|
||||
padding: 34px 40px 37px 40px;
|
||||
background-image: $bg-gradient-secondary;
|
||||
border-radius: 10px;
|
||||
margin: 40px 0;
|
||||
|
||||
p {
|
||||
position: relative;
|
||||
font-style: italic;
|
||||
color: $white;
|
||||
}
|
||||
|
||||
h6 {
|
||||
color: $white;
|
||||
}
|
||||
}
|
||||
|
||||
.article {
|
||||
display: flex;
|
||||
|
||||
img {
|
||||
height: 75px;
|
||||
width: 75px;
|
||||
object-fit: cover;
|
||||
}
|
||||
}
|
||||
|
||||
form {
|
||||
textarea {
|
||||
height: 180px;
|
||||
}
|
||||
}
|
||||
|
||||
/* /blog single */
|
||||
53
themes/agico-hugo/assets/scss/templates/_bootstrap.scss
Normal file
53
themes/agico-hugo/assets/scss/templates/_bootstrap.scss
Normal file
@@ -0,0 +1,53 @@
|
||||
// Bootstrap 5.3.0
|
||||
|
||||
@import "../bootstrap/mixins/banner";
|
||||
@include bsBanner("");
|
||||
|
||||
// scss-docs-start import-stack
|
||||
// Configuration
|
||||
@import "../bootstrap/functions";
|
||||
@import "../bootstrap/variables";
|
||||
@import "../bootstrap/variables-dark";
|
||||
@import "../bootstrap/maps";
|
||||
@import "../bootstrap/mixins";
|
||||
@import "../bootstrap/utilities";
|
||||
|
||||
// Layout & components
|
||||
@import "../bootstrap/root";
|
||||
@import "../bootstrap/reboot";
|
||||
@import "../bootstrap/type";
|
||||
@import "../bootstrap/images";
|
||||
@import "../bootstrap/containers";
|
||||
@import "../bootstrap/grid";
|
||||
@import "../bootstrap/tables";
|
||||
@import "../bootstrap/forms";
|
||||
@import "../bootstrap/buttons";
|
||||
@import "../bootstrap/transitions";
|
||||
@import "../bootstrap/dropdown";
|
||||
// @import "../bootstrap/button-group";
|
||||
@import "../bootstrap/nav";
|
||||
@import "../bootstrap/navbar";
|
||||
@import "../bootstrap/card";
|
||||
@import "../bootstrap/accordion";
|
||||
@import "../bootstrap/breadcrumb";
|
||||
@import "../bootstrap/pagination";
|
||||
// @import "../bootstrap/badge";
|
||||
// @import "../bootstrap/alert";
|
||||
// @import "../bootstrap/progress";
|
||||
// @import "../bootstrap/list-group";
|
||||
// @import "../bootstrap/close";
|
||||
// @import "../bootstrap/toasts";
|
||||
@import "../bootstrap/modal";
|
||||
// @import "../bootstrap/tooltip";
|
||||
// @import "../bootstrap/popover";
|
||||
// @import "../bootstrap/carousel";
|
||||
// @import "../bootstrap/spinners";
|
||||
// @import "../bootstrap/offcanvas";
|
||||
// @import "../bootstrap/placeholders";
|
||||
|
||||
// Helpers
|
||||
@import "../bootstrap/helpers";
|
||||
|
||||
// Utilities
|
||||
@import "../bootstrap/utilities/api";
|
||||
// scss-docs-end import-stack
|
||||
226
themes/agico-hugo/assets/scss/templates/_card.scss
Executable file
226
themes/agico-hugo/assets/scss/templates/_card.scss
Executable file
@@ -0,0 +1,226 @@
|
||||
.card{
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.card-img-sm {
|
||||
max-width: 60px;
|
||||
max-height: 60px;
|
||||
}
|
||||
|
||||
.card-date {
|
||||
padding-left: 40px;
|
||||
position: relative;
|
||||
|
||||
&::before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
height: 1px;
|
||||
width: 30px;
|
||||
background: $text-color;
|
||||
left: 0;
|
||||
top: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
.card-active{
|
||||
background: $bg-gradient-primary;
|
||||
*{
|
||||
color: $white;
|
||||
}
|
||||
}
|
||||
|
||||
.hover-bg-primary {
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-radius: inherit;
|
||||
@extend .transition;
|
||||
background: $bg-gradient-primary;
|
||||
z-index: -1;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.btn {
|
||||
transition: .3s ease;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background: transparent;
|
||||
&:before {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
* {
|
||||
color: $white !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.card-border-bottom {
|
||||
&:hover {
|
||||
&:after {
|
||||
width: 94%;
|
||||
border-radius: 0 0 20px 20px;
|
||||
}
|
||||
}
|
||||
|
||||
&:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 170px;
|
||||
height: 4px;
|
||||
left: 50%;
|
||||
bottom: 0;
|
||||
transform: translateX(-50%);
|
||||
border-radius: 45px;
|
||||
background: $bg-gradient-secondary;
|
||||
@extend .transition;
|
||||
}
|
||||
}
|
||||
|
||||
.icon-quote {
|
||||
border: 4px solid #e5e6e8;
|
||||
height: 40px;
|
||||
padding: 8px;
|
||||
border-radius: 10px;
|
||||
font-size: 20px;
|
||||
color: $color-primary;
|
||||
}
|
||||
|
||||
.icon {
|
||||
font-size: 25px;
|
||||
}
|
||||
|
||||
.icon-lg {
|
||||
font-size: 50px;
|
||||
}
|
||||
|
||||
.icon-bg-circle {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
top: -20px;
|
||||
left: 15px;
|
||||
border-radius: 50%;
|
||||
background: inherit;
|
||||
opacity: .1;
|
||||
z-index: -1;
|
||||
}
|
||||
&::before{
|
||||
z-index: 1;
|
||||
position: relative;
|
||||
}
|
||||
}
|
||||
|
||||
.icon-bg-square {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: -55px;
|
||||
left: 73%;
|
||||
width: 75px;
|
||||
height: 75px;
|
||||
transform: rotate(50deg) scale(0.8) skew(-1deg, -15deg) translateX(16px) translateY(97px);
|
||||
background: #f5f6f7;
|
||||
z-index: -1;
|
||||
@extend .rounded-sm;
|
||||
}
|
||||
|
||||
&::before {
|
||||
z-index: 1;
|
||||
position: relative;
|
||||
}
|
||||
}
|
||||
|
||||
.icon-primary {
|
||||
color: #207495;
|
||||
}
|
||||
|
||||
.icon-yellow{
|
||||
color: #f6a622;
|
||||
}
|
||||
|
||||
.icon-purple{
|
||||
color: #7952f5;
|
||||
}
|
||||
|
||||
.icon-cyan{
|
||||
color: #02d0a1;
|
||||
}
|
||||
|
||||
.icon-red {
|
||||
color: #ff4949;
|
||||
}
|
||||
|
||||
.icon-orange{
|
||||
color: #ff7c17;
|
||||
}
|
||||
|
||||
.icon-green{
|
||||
color: #66cc33;
|
||||
}
|
||||
|
||||
.icon-blue{
|
||||
color: #3682ff;
|
||||
}
|
||||
|
||||
.icon-bg-primary{
|
||||
&::after{
|
||||
background: #207495;
|
||||
}
|
||||
}
|
||||
|
||||
.icon-bg-yellow{
|
||||
&::after{
|
||||
background: #f6a622;
|
||||
}
|
||||
}
|
||||
|
||||
.icon-bg-purple{
|
||||
&::after{
|
||||
background: #7952f5;
|
||||
}
|
||||
}
|
||||
|
||||
.icon-bg-cyan{
|
||||
&::after{
|
||||
background: #02d0a1;
|
||||
}
|
||||
}
|
||||
|
||||
.icon-bg-red{
|
||||
&::after{
|
||||
background: #ff4949;
|
||||
}
|
||||
}
|
||||
|
||||
.icon-bg-green{
|
||||
&::after{
|
||||
background: #66cc33;
|
||||
}
|
||||
}
|
||||
|
||||
.icon-bg-orange{
|
||||
&::after{
|
||||
background: #ff7c17;
|
||||
}
|
||||
}
|
||||
|
||||
.icon-bg-blue{
|
||||
&::after{
|
||||
background: #3682ff;
|
||||
}
|
||||
}
|
||||
95
themes/agico-hugo/assets/scss/templates/_footer.scss
Executable file
95
themes/agico-hugo/assets/scss/templates/_footer.scss
Executable file
@@ -0,0 +1,95 @@
|
||||
footer {
|
||||
&>div:first-child {
|
||||
/* border-bottom: 1px solid $border-light; */
|
||||
|
||||
}
|
||||
}
|
||||
.copyright {
|
||||
a {
|
||||
color: $text-light;
|
||||
|
||||
&:hover {
|
||||
color: $color-primary;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* subscription */
|
||||
.subscription {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
|
||||
@include desktop {
|
||||
background: $bg-gradient-secondary;
|
||||
position: static;
|
||||
}
|
||||
|
||||
&.bg-white {
|
||||
background: none !important;
|
||||
|
||||
.subscription-wrapper {
|
||||
&::before {
|
||||
background: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
@include desktop {
|
||||
background: $white;
|
||||
}
|
||||
|
||||
.form-control {
|
||||
border: 1px solid #ebebeb !important;
|
||||
}
|
||||
}
|
||||
|
||||
&-wrapper {
|
||||
position: relative;
|
||||
top: -40px;
|
||||
|
||||
@include desktop {
|
||||
top: 0;
|
||||
padding: 50px 0;
|
||||
}
|
||||
|
||||
&::before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
border-radius: 24px;
|
||||
border: 4px solid white;
|
||||
width: 100%;
|
||||
height: 200px;
|
||||
left: 0;
|
||||
background: $bg-gradient-secondary;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
@extend .shadow;
|
||||
|
||||
@include desktop {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.form-control {
|
||||
height: 60px;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border-radius: 45px;
|
||||
|
||||
&:focus {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
outline: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
&::placeholder {
|
||||
color: $gray;
|
||||
}
|
||||
|
||||
&.text-white {
|
||||
|
||||
&::placeholder {
|
||||
color: $white;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
74
themes/agico-hugo/assets/scss/templates/_homepage.scss
Executable file
74
themes/agico-hugo/assets/scss/templates/_homepage.scss
Executable file
@@ -0,0 +1,74 @@
|
||||
// video css start
|
||||
.video-thumb {
|
||||
min-height: 400px;
|
||||
}
|
||||
|
||||
// testimonial css start
|
||||
.swiper {
|
||||
padding: 0px 20px;
|
||||
|
||||
@include mobile-xs {
|
||||
padding: 0px 10px;
|
||||
}
|
||||
}
|
||||
|
||||
.bg-shape-triangles {
|
||||
position: relative;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
z-index: -1;
|
||||
}
|
||||
}
|
||||
|
||||
// testimonial css end
|
||||
|
||||
// pricing css end
|
||||
|
||||
|
||||
.floating-video {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
|
||||
.play-icon {
|
||||
font-size: 18px;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
text-align: center;
|
||||
line-height: 90px;
|
||||
background: $white;
|
||||
display: inline-block;
|
||||
border-radius: 50%;
|
||||
border: none;
|
||||
outline: none;
|
||||
box-shadow: none;
|
||||
|
||||
.fa-play {
|
||||
z-index: 1;
|
||||
margin-left: 5px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.pulse-svg {
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
}
|
||||
}
|
||||
|
||||
.icon-center {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
214
themes/agico-hugo/assets/scss/templates/_navigation.scss
Executable file
214
themes/agico-hugo/assets/scss/templates/_navigation.scss
Executable file
@@ -0,0 +1,214 @@
|
||||
.navigation {
|
||||
transition: none;
|
||||
|
||||
background: $bg-gradient-secondary;
|
||||
|
||||
@include desktop {
|
||||
background: $bg-gradient-secondary;
|
||||
padding: 15px 0;
|
||||
}
|
||||
|
||||
&.nav-bg {
|
||||
background: $bg-gradient-secondary;
|
||||
padding: 15px 0;
|
||||
}
|
||||
|
||||
&.navigation-white {
|
||||
&.nav-bg {
|
||||
background: $white;
|
||||
box-shadow: 0px 10px 20px 0px rgba(0, 141, 236, 0.1);
|
||||
|
||||
.btn {
|
||||
color: $color-primary !important;
|
||||
|
||||
&:hover {
|
||||
color: $white !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@include desktop {
|
||||
background: $white;
|
||||
|
||||
.btn {
|
||||
color: $color-primary !important;
|
||||
|
||||
&:hover {
|
||||
color: $white !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
&-menu {
|
||||
background: $white;
|
||||
}
|
||||
|
||||
&-item {
|
||||
color: $text-dark;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.navbar {
|
||||
.navbar-toggler {
|
||||
&[aria-expanded="true"] {
|
||||
.fa-times {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.fa-bars {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.fa-times,
|
||||
.fa-bars {
|
||||
color: $white !important;
|
||||
font-size: 25px;
|
||||
}
|
||||
|
||||
.fa-times {
|
||||
display: none;
|
||||
}
|
||||
|
||||
&:focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
}
|
||||
|
||||
.nav-item {
|
||||
|
||||
.nav-link {
|
||||
font-size: 16px;
|
||||
font-weight: 500;
|
||||
padding: 20px 22px;
|
||||
//font-family: $font-primary;
|
||||
transition: all ease 0.3s;
|
||||
|
||||
@include desktop-lg {
|
||||
padding: 20px 15px;
|
||||
}
|
||||
|
||||
@include desktop {
|
||||
padding: 10px 0;
|
||||
}
|
||||
|
||||
&.active {
|
||||
color: $white;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
color: $white !important;
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
&:hover {
|
||||
.dropdown-menu {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
transform: scaleX(1);
|
||||
}
|
||||
}
|
||||
|
||||
&-menu {
|
||||
border: 0;
|
||||
top: 50px;
|
||||
opacity: 0;
|
||||
left: -20px;
|
||||
padding: 15px;
|
||||
display: block;
|
||||
border-radius: 0;
|
||||
visibility: hidden;
|
||||
border-radius: 10px;
|
||||
transition: .3s ease;
|
||||
margin: 0px;
|
||||
transform: scale(.8);
|
||||
background: $bg-gradient-secondary;
|
||||
box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
|
||||
border: 1px solid white;
|
||||
|
||||
@include desktop {
|
||||
display: none;
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
transform: scale(1);
|
||||
transform-origin: unset;
|
||||
}
|
||||
|
||||
&.show {
|
||||
visibility: hidden;
|
||||
|
||||
@include desktop {
|
||||
visibility: visible;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&-item {
|
||||
position: relative;
|
||||
color: $white;
|
||||
transition: .2s ease;
|
||||
//font-family: $font-primary;
|
||||
|
||||
@include desktop {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
&:not(:last-child) {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
color: $white !important;
|
||||
text-decoration: underline;
|
||||
background: transparent;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#langDropdown {
|
||||
background: transparent;
|
||||
border: none;
|
||||
color: $white;
|
||||
font-size: 16px;
|
||||
border-radius: 50px;
|
||||
appearance: none;
|
||||
padding: 12px;
|
||||
width: auto !important;
|
||||
min-width: 0 !important;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
option {
|
||||
color: black;
|
||||
min-width: 0;
|
||||
}
|
||||
&:hover {
|
||||
color:$white !important;
|
||||
}
|
||||
}
|
||||
|
||||
.dropdown-menu-lang {
|
||||
min-width: 0 !important;
|
||||
width: auto;
|
||||
white-space: nowrap;
|
||||
padding: 4px;
|
||||
background: $white !important;
|
||||
appearance: none;
|
||||
--bs-dropdown-min-width: 0;
|
||||
--bs-dropdown-link-active-bg: #79ACBF; /* background of selected item */
|
||||
--bs-dropdown-link-active-color: #fff; /* text color of selected item */
|
||||
}
|
||||
|
||||
.navbar .dropdown > .dropdown-menu.dropdown-menu-lang {
|
||||
width: max-content !important;
|
||||
min-width: 0 !important;
|
||||
}
|
||||
73
themes/agico-hugo/assets/scss/templates/_team.scss
Executable file
73
themes/agico-hugo/assets/scss/templates/_team.scss
Executable file
@@ -0,0 +1,73 @@
|
||||
.team-member {
|
||||
position: relative;
|
||||
|
||||
&:hover {
|
||||
.team-member-content {
|
||||
&::before {
|
||||
height: 100%;
|
||||
transition: .3s ease;
|
||||
}
|
||||
}
|
||||
|
||||
.team-member-name,
|
||||
.team-member-designation {
|
||||
transform: translateY(0);
|
||||
opacity: 1;
|
||||
transition-delay: .1s;
|
||||
}
|
||||
|
||||
.team-member-social {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
bottom: 0;
|
||||
transition-delay: .4s;
|
||||
}
|
||||
}
|
||||
|
||||
&-content {
|
||||
position: absolute;
|
||||
height: 32%;
|
||||
width: 80%;
|
||||
left: 10%;
|
||||
bottom: 10%;
|
||||
z-index: 1;
|
||||
|
||||
&::before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
height: 0;
|
||||
width: 100%;
|
||||
transition: .5s ease;
|
||||
background: $bg-gradient-primary;
|
||||
bottom: 0;
|
||||
border-radius: 10px;
|
||||
left: 0;
|
||||
z-index: -1;
|
||||
}
|
||||
}
|
||||
|
||||
&-name {
|
||||
transform: translateY(100px);
|
||||
opacity: 0;
|
||||
transition: .4s ease;
|
||||
transition-delay: .0s;
|
||||
}
|
||||
|
||||
&-designation {
|
||||
transform: translateY(100px);
|
||||
opacity: 0;
|
||||
transition: .4s ease;
|
||||
transition-delay: .0s;
|
||||
}
|
||||
|
||||
&-social {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: -10%;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: .3s ease;
|
||||
transition-delay: .0s;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user