i wont to duplicate the code to got works here is the full code: https://codepen.io/mosaababorkia/pen/dymVVmY you can visit the code and there you see that my media query always i was duplicate the class to change the effect of the size or other all i want when i change the varible effect all the file! i tried to add the query in the top not works for me !
$center : calc(50% - 332px + 150px);
$left : 0px;
$right : calc(100% - 282px - 30px);
$smallSize:250px;
$bigSize:300px;
.container{
width:$smallSize;
}
//i want to type the new value of the right when i arrive to display size
@media only screen and (max-width:1200px) {
$right :calc(100% - 195px - 69px) !global;
$center: calc(53.5% - 334px + 150px) !global;
$smallSize:200px !global;
$bigSize:250px !global;
}
//this doesnt worked for me by adding global only if i retype the class inside like this
// i want a method to effect the written already in top
@media only screen and (max-width:1200px) {
$right :calc(100% - 195px - 69px) !global;
$center: calc(53.5% - 334px + 150px) !global;
$smallSize:200px !global;
$bigSize:250px !global;
//trying to find way to not rewrite it again!
.container{
width:$smallSize;
}
}
thanks for helping !
<style>
content.