/*
Theme Name: Canvas Child 2
Description: Second child theme for Canvas - Floated right menu
Author: Websites.ca
Template: canvas
Version: 0.1.0
*/

@import url("../canvas/style.css");

/*========== DESKTOP ==========*/

@media only screen and (min-width: 767px) {
    #navigation { 
        float: right; 
        width: auto; 
        clear:none; 
        max-width: 600px; // This can be changed
    }
}

/*========== MOBILE ==========*/

@media only screen and (max-width: 767px) {
    #wpadminbar {
       position: fixed;
    }
    #navigation {
        top: -40px !important;
    } 
} 

/*========== TEMP FIX FOR CHROME FONT BUG ==========*/

/* body
{
    -webkit-animation-duration: 0.1s;
	-webkit-animation-name: fontfix;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: linear;
	-webkit-animation-delay: 0.1s;
}

@-webkit-keyframes fontfix{
	from{ 	opacity: 1; }
	to{	opacity: 1; }
} */