/*
Theme Name: u3atheme
Theme URI: https://u3awpdev.org.uk/
Author: Camilla Jordan, Nick Talbott.
Description: Theme using u3a brand guideline colours and fonts.  Based on starter theme from https://fullsiteediting.com/
Requires at least: 6.0
Tested up to: 6.1
Requires PHP: 5.6
Version: 1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: u3atest
*/

:root {
	--mainblue: #005ab8;
	--mainyellow: #ffc700;
	}

.u3a-header-logo {
	font-size: xxx-large;
	letter-spacing: -4px;
  }


img.alignleft {float: left; margin: .5em 1em .5em 0;}

a.u3abtn {
	border-style: outset;
	border-width: 0.2em;
	border-radius: 0.75em;
	border-color: var(--mainblue);
	background-color: var(--mainblue);
	color: var(--mainyellow);
	margin: 0.3em;
	padding: 0.2em;
	text-align: center;
	text-decoration: none;
	font-size: 1em;
	font-weight: bold;
	line-height: 1;
	cursor: pointer
}

.u3aform {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-gap: 20px;
}

@media only screen and (max-width:786px){
	.u3aform {
		display: block;
		margin:0px 15px 0px 15px;
		}
}

	.u3aform input[type=submit] {
		background-color: var(--wp--preset--color--uta-secondary);
		color: var(--wp--preset--color--uta-primary);
		width: 95%;
		font-weight: bold;
		font-size:large;
	}

	.u3aform input[type=text] {
		background-color: aliceblue;
		width:95%;
	}
.u3aform input[type=radio]{
	background-color: aliceblue;
	width:5%;
	}
	.u3aform input[type=checkbox] {
		background-color: aliceblue;
		width: 5%;
	}
	.u3aform input[type=button] {
		background-color: var(--wp--preset--color--uta-secondary);
		color: var(--wp--preset--color--uta-primary);
		width: 95%;
		font-weight: bold;
	}
	.u3aform input[type=date] {
		background-color: aliceblue;
		width: 95%;
	}
	.u3aform input[type=datetime] {
		background-color: aliceblue;
		width: 95%;
	}
	.u3aform input[type=email] {
		background-color: aliceblue;
		width: 95%;
	}
	.u3aform input[type=file] {
		background-color: aliceblue;
		width: 50%;
	}
	.u3aform input[type=image] {
		background-color: aliceblue;
		width: 50%;
	}
	.u3aform input[type=number] {
		background-color: aliceblue;
		width: 50%;
	}
	.u3aform input[type=password] {
		background-color: aliceblue;
		width: 95%;
	}
	.u3aform input[type=tel] {
		background-color: aliceblue;
		width: 50%;
	}
	.u3aform input[type=url] {
		background-color: aliceblue;
		width: 95%;
	}

.u3aform label{
	font-weight:bold;
	width:95%;
}
	.u3aform ul {
		background-color: aliceblue;
		width: 95%;
		list-style-type: none;
		margin: 0;
		padding: 0;
	}
	.u3aform textarea {
		background-color: aliceblue;
		width: 98%;
	}
.u3aform input:disabled {
		background-color: lightgray;
	}
.u3agroup {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-gap: 10px;
}

@media only screen and (max-width:786px) {
	.u3agroup {
		display: block;
		margin: 0px 15px 0px 15px;
	}
}


