/* Enter Your &lt;?php
/**
 * Plugin Name: Simple Custom CSS
 * Plugin URI: http://johnregan3.github.io/simple-custom-css
 * Description: The simple, solid way to add custom CSS to your WordPress website. Simple Custom CSS allows you to add your own styles or override the default CSS of a plugin or theme.
 * Author: John Regan, Danny Van Kooten
 * Author URI: http://johnregan3.me
 * Version: 3.3
 * Text Domain: simple-custom-css
 *
 * Copyright 2014  John Regan  (email : john@johnregan3.com)
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License, version 2, as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * @package SCCSS
 * @author John Regan
 * @version 3.2
 */

// Prevent direct file access
if( ! defined( &#039;ABSPATH&#039; ) ) {
	die();
}

define( &#039;SCCSS_FILE&#039;, __FILE__ );

if( ! is_admin() ) {
	require_once dirname( SCCSS_FILE ) . &#039;/includes/public.php&#039;;
} elseif( ! defined( &#039;DOING_AJAX&#039; ) ) {
	require_once dirname( SCCSS_FILE ) . &#039;/includes/admin.php&#039;;
}

Custom CSS Here */