Files
brpp.pl/wp-content/themes/brpp-prawo-podatki/css/custom.scss
Roman Pyrih a007592537 Save
2025-08-26 13:31:32 +02:00

207 lines
3.2 KiB
SCSS

@import '../assets/fonts/HelveticaNeue/stylesheet.css';
@import '_mixins';
$cWhite: #ffffff;
$cGold: #d9ba5c;
$cGolder: #ba962b;
$cGray: #8b8b8b;
$cBlack: #232323;
$fHelveticaNeue: 'Helvetica Neue', sans-serif;
$header-height: 77px;
* {
font-family: $fHelveticaNeue;
}
a {
text-decoration: none;
}
.container {
width: 100%;
margin-left: auto;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
@each $breakpoint, $max in $container-max-widths {
@if $breakpoint == sm {
@media (min-width: 576px) {
max-width: $max;
}
} @else if $breakpoint == md {
@media (min-width: 768px) {
max-width: $max;
}
} @else if $breakpoint == lg {
@media (min-width: 992px) {
max-width: $max;
}
} @else if $breakpoint == xl {
@media (min-width: 1200px) {
max-width: $max;
}
} @else if $breakpoint == xxl {
@media (min-width: 1370px) {
max-width: $max;
}
}
}
}
.btn_1 {
color: $cBlack !important;
font-size: 16px;
font-weight: 500;
line-height: 1;
display: inline-block;
padding: 15px 24px 13px;
border-radius: 100px;
background: rgba($cGray, 0.1);
text-wrap-mode: nowrap;
transition: all 250ms ease-in-out;
&:hover {
color: $cWhite !important;
background: $cBlack;
}
}
.btn_2 {
color: $cWhite !important;
font-size: 16px;
font-weight: 500;
line-height: 1;
display: inline-block;
padding: 15px 24px 13px;
border-radius: 100px;
background: $cGold;
text-wrap-mode: nowrap;
transition: all 250ms ease-in-out;
&:hover {
background: $cGolder;
}
}
.btn_3 {
color: $cGold !important;
font-size: 16px;
font-weight: 500;
line-height: 1;
display: inline-block;
padding: 15px 24px 13px;
border-radius: 100px;
background: rgba($cGold, 0.1);
text-wrap-mode: nowrap;
transition: all 250ms ease-in-out;
&:hover {
color: $cWhite !important;
background: $cGold;
}
}
.btn_4 {
color: $cGold !important;
font-size: 16px;
font-weight: 500;
line-height: 1;
display: inline-block;
padding: 15px 24px 13px;
border-radius: 100px;
background: $cWhite;
text-wrap-mode: nowrap;
transition: all 250ms ease-in-out;
&:hover {
color: $cWhite !important;
background: $cGold;
}
}
.btn_5 {
color: $cGold !important;
font-size: 16px;
font-weight: 500;
line-height: 1;
text-wrap-mode: nowrap;
transition: all 250ms ease-in-out;
&:hover {
text-decoration: underline;
}
}
header#masthead {
height: $header-height;
.row {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
column-gap: 40px;
height: $header-height;
.site-branding {
img {
width: 246px;
min-width: 246px;
}
}
nav#site-navigation {
ul#primary-menu {
gap: 50px;
justify-content: center;
li {
a {
color: $cBlack;
font-size: 16px;
font-weight: 500;
line-height: 1;
}
}
}
}
.main-navigation-secondary {
padding: 0;
margin: 0;
list-style: none;
display: flex;
flex-direction: row;
align-items: center;
gap: 16px;
li {
&:nth-child(1) {
a {
@extend .btn_1;
}
}
&:nth-child(2) {
a {
@extend .btn_2;
}
}
}
}
}
}
//* Home
body.page-id-25 {
}