/*
Theme Name: Vueo Child Theme
Theme URI: https://themeshaper.com/vueo/
Template: vueo
Author: Brad Mackey
Description: A child theme of Vueo as a portfolio theme for a custom site.
Requires at least: 6.6
Version: 1.0.3
*/

:root {
	--color-white: #ffffff;
	--color-black: #000000;
	--color-pri: #7a5d25;
	--color-fore: #e8e5d6;
}

/* Background color behind post on mobile */
@media (max-width: 780px) {
	:root {
		--wp--preset--gradient--default-gradient: linear-gradient(to bottom, var(--wp--preset--color--primary) 1%, var(--wp--preset--color--foreground) 1%);
	}
	
	.has-default-gradient-background {
		background: var(--wp--preset--gradient--default-gradient) !important;
	}
}

/* Pagation Buttons */
.wp-block-query-pagination-next {
	background: var(--color-pri);
	padding: 10px;
	color: var(--color-fore);
}

.wp-block-query-pagination-previous {
	background: var(--color-pri);
	padding: 10px;
	color: var(--color-fore);
}