| Server IP : 146.59.209.152 / Your IP : 216.73.216.152 Web Server : Apache System : Linux webm009.cluster131.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : monpetu ( 144298) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/monpetu/www/leoreno.fr/wp-content/themes/buildexo/assets/scss/abstracts/ |
Upload File : |
@mixin background($position: center,$size: cover,$repeat: no-repeat) {
background: {
position: $position;
repeat: $repeat;
size: $size;
}
}
@mixin transform($property) {
-webkit-transform: $property;
-ms-transform: $property;
transform: $property;
}
@mixin border-radius($property) {
border-radius: $property;
-webkit-border-radius: $property;
-moz-border-radius: $property;
-ms-border-radius: $property;
-o-border-radius: $property;
}
@mixin transition($property) {
-webkit-transition: $property;
-o-transition: $property;
transition: $property;
}
@mixin flexWidth($property) {
flex: 0 0 $property;
-ms-flex: 0 0 $property;
max-width: $property;
}
@mixin d-flex {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
@mixin center {
display: flex;
align-items: center;
justify-content: center;
}
@mixin shadow1 {
box-shadow: 0.975px 7.94px 21px 0px rgba(239, 239, 239, 0.5);
}
@mixin shadow2 {
box-shadow: 0px 4px 7px 0px rgba(38, 204, 133, 0.36);
}
@mixin shadow3 {
box-shadow: 0.975px 7.94px 21px 0px rgba(244, 242, 239, 0.5);
}
@mixin placeholder($value) {
&::-webkit-input-placeholder {
color: $value;
opacity: 1;
}
&::-moz-placeholder {
color: $value;
opacity: 1;
}
&:-ms-input-placeholder {
color: $value;
opacity: 1;
}
&:-moz-placeholder {
color: $value;
opacity: 1;
}
}
@mixin after {
position: absolute;
left: 0;
content: "";
top: 0;
width: 100%;
height: 100%;
}
@mixin respond($breakpoint) {
@if $breakpoint==laptop {
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
@content;
}
}
@if $breakpoint==lg {
@media (max-width: 1199px) {
@content;
}
}
@if $breakpoint==md {
@media (max-width: 991px) {
@content;
}
}
@if $breakpoint==xs {
@media (max-width: 767px) {
@content;
}
}
@if $breakpoint==sm {
@media only screen and (min-width: 576px) and (max-width: 767px) {
@content;
}
}
}