/*
Theme Name:  Twenty Seventeen Child
Theme URI:  https://bkmpls.com
Description:  Theme to extend Twenty Seventeen for my site.
Author:  Ben Etten
Textdomain:  betten
Author URI:  https://bkmpls.com
Template:  twentyseventeen
Version:  1.05
License:  GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html                 
*/


/*  Hiding the Page Title

I am choosing to override the class .page-title because I don't like the way
it looks, particularly on the "Category" pages I use for both Gallery and
my Blog.

*/

.page-title {
    display: none;
}


/*	Suggested fix for masive Zoom issue on iPad

	This is the fix from Oliver who runs the pluggin I use to extend the Twenty Seventeen theme. 

	Here is a link to the support ticket for more detail.
	https://wordpress.org/support/topic/front-page-images-zoomed-specific-to-safari/#post-14169148
*/

@supports (-webkit-touch-callout: none) {
        @media screen and (min-width: 48em) {
                .background-fixed .panel-image {
                        background-size: cover;
                        height: auto;
                        background-attachment: scroll;
                }
        }
}