/*
Theme Name: Clove
Theme URI: https://www.anarieldesign.com/free-full-site-editing-theme-clove
Author: the WordPress team
Author URI: https://anarieldesign.com/
Description: Clove is an experimental block-based theme. It is built to leverage the full-site editing functionality that is being built in the Gutenberg plugin.
Requires at least: 5.6
Tested up to: 5.8
Requires PHP: 7.2
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: clove
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments
Clove is distributed under the terms of the GNU GPL.
*/


/*--------------------------------------------------------------
# Shared Styles
--------------------------------------------------------------*/

@import "assets/css/style-shared.css";
@import "assets/css/blocks.css";

/*--------------------------------------------------------------
# Defaults
--------------------------------------------------------------*/

body {
	margin: 0;
	-webkit-animation: fadein 0.7s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 0.7s; /* Firefox < 16 */
     -ms-animation: fadein 0.7s; /* Internet Explorer */
     -o-animation: fadein 0.7s; /* Opera < 12.1 */
    animation: fadein 0.7s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

