//MEDIA-QUERIES @full-hd: ~"(min-width: 1400px)"; @desktop: ~"(min-width: 1200px)"; @laptop: ~"(min-width:992px)"; @tablet: ~"(min-width: 768px)"; @mobile: ~"(min-width: 240px)"; @mfull-hd: ~"(max-width: 1400px)"; @mdesktop: ~"(max-width: 1200px)"; @mlaptop: ~"(max-width:992px)"; @mtablet: ~"(max-width: 768px)"; @mmobile: ~"(max-width: 240px)"; @branco: #fff; @preto: #000; @bgcolor: @branco; //Fonts .texto { font-family: 'Raleway', sans-serif; font-weight: 400; font-size: 14px; line-height: 20px; color: #152649; @media @full-hd { font-size: 18px; line-height: 24px; } } .anima (@anima) { -webkit-transition: all @anima ease-in-out; -moz-transition: all @anima ease-in-out; transition: all @anima ease-in-out; } .border-radius (@radius) { border-radius: @radius; -moz-border-radius: @radius; -webkit-border-radius: @radius; } .bg-cover { -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } .box-shadow { -webkit-box-shadow: 0px 2px 6px 0px rgba(50, 50, 50, 0.3); -moz-box-shadow: 0px 2px 6px 0px rgba(50, 50, 50, 0.3); box-shadow: 0px 2px 6px 0px rgba(50, 50, 50, 0.3); } .rotate(@rotatedg) { -webkit-transform: rotate(@rotatedg); -moz-transform: rotate(@rotatedg); -o-transform: rotate(@rotatedg); transform: rotate(@rotatedg); }