﻿
.sidebar {
	grid-area: sidebar;
}

.content {
	grid-area: content;
}

.header {
	grid-area: header;
}

.content2 {
	grid-area: content2;
}

.header2 {
	grid-area: header2;
}


.wrapper {
	display: grid;
	grid-gap: 6px;
	grid-template-columns: 120px 240px 120px;
	grid-template-areas:
		"....... header header"
		"sidebar content content";
	color: #444;
}

.box {
	background-color: #444;
	color: #fff;
	border-radius: 5px;
	padding: 4px;
	font-size: 100%;
}

.header {
	background-color: #999;
}

.header2 {
	background-color: #777;
}
