Files
drmaterac.pl/themes/classic/assets/css/custom.scss
2025-01-06 20:47:25 +01:00

124 lines
2.0 KiB
SCSS

/*
* Custom code goes here.
* A template should always ship with an empty custom.css
*/
//* Imports
@import url("//fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
//* Colors
$cWhite: #fff;
$cBlack: #000;
$cLavender: #a340ff;
$cTxtBlack: #010101;
//* Global
body {
font-family: "Poppins", sans-serif !important;
font-size: 1rem;
line-height: 1.5;
color: $cTxtBlack;
background-color: $cWhite;
}
.no-padding {
padding: 0 !important;
}
.no-margin {
margin: 0 !important;
}
//* header
#header {
a {
&:hover {
color: $cLavender;
}
}
.header-nav {
font-size: 12px;
margin-bottom: 0 !important;
.bottomnav {
padding-bottom: 0;
padding-top: 10px;
p {
margin-bottom: 0;
color: $cTxtBlack;
margin: 0;
font-size: 12px;
line-height: 20px;
font-weight: 400;
}
.ApColumn {
.block {
margin-bottom: 0;
}
}
.left_header {
display: flex;
align-items: center;
p {
img {
margin: 0 7px 0 24px;
}
}
}
.user_container {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 10px;
}
}
}
.header-top {
background: none;
}
//* Nav menu
.nav {
&.megamenu {
&.horizontal {
list-style: none;
width: 100%;
display: flex;
align-items: center;
justify-content: flex-start;
margin-bottom: 0;
li {
margin-right: 19px;
a {
color: $cTxtBlack;
padding: 0;
&::after {
display: none;
}
&:hover {
background: transparent;
}
span {
font-size: 15px !important;
font-weight: 400 !important;
line-height: 24px;
}
}
}
}
}
}
}