This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Load scripts and styles | |
function add_scripts_and_styles() { | |
if ( ! is_admin() ) { | |
// For styles | |
wp_enqueue_style( 'main-style', get_template_directory_uri() . '/style.css', null, null ); | |
// For scripts (js) | |
wp_enqueue_script('jquery'); | |
wp_enqueue_script( 'main-js', get_template_directory_uri() . '/js/main.js', null, null, true ); | |
// Map |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin circle($width, $border-width, $color) { | |
width: $width; | |
height: $width; | |
border: $border-width solid $color; | |
-webkit-border-radius: $width/2; | |
-moz-border-radius: $width/2; | |
border-radius: $width/2; | |
} |