Articles on JAVA Category


JavaScript image

JavaScript

Author image
By JOHN Thu, Oct 07, 2021 at 03:14 PM (3 years ago)
Updated On Fri, Nov 04, 2022 at 03:08 PM (2 years ago)

// Variables
$font-stack: Helvetica, sans-serif;
$primary-color: #333;

@mixin border-radius($radius) {
  -webkit-border-radius: $radius;
  -moz-border-radius: $radius;
  -ms-border-radius: $radius;
  border-radius: $radius;
}

body {
  font: 100% $font-stack;
  color: $primary-color;
}        

Read More … 

Search


Archives

No archives data found yet in 2025.

No archives data found in 2016.

Find Us on Facebook

Subscribe for new updates




Back to Top