#gendungeon
{
	font-size: 18px;
}

.dungeon_form input[type=number]
{
	width: 110px;
	padding: 5px 5px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #1e1f22;
	border-radius: 4px;
	box-sizing: border-box;
	background-color: #4e5058;
}

.dungeon_form input[type=submit]
{
	width: 100px;
	background-color: #4CAF50;
	color: white;
	padding: 14px 10px;
	margin: 8px 0;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	text-align: center;
}

.dungeon_form input[type=submit]:hover
{
	background-color: #45a049;
}

.dungeon_floor
{
	float: left;
	margin: 30px 0 0 25px;
}

.dungeon_floor span
{
	float: top;
	width: 200px;
	margin-bottom: 10px;
}

.dungeon_grid
{
	float: top;
	position: relative;
	width: 100%;
	border: 2px solid #4e5058;
}

.gen_slot
{
	float: left;
	width: 28px;
	height: 28px;
	font-size: 9px;
	color: lightgrey;
	font-weight: bold;
	text-align: center;
	border: 2px solid #4e5058;
}

.dungeon_spacer
{
	float: left;
	width: 100%;
	height: 30px;
}

.dungeon_tile
{
	z-index: 1;
	position: absolute;
}

.rot90
{
	transform-origin: center;
	transform: rotate(90deg);
}

.rot180
{
	transform-origin: center;
	transform: rotate(180deg);
}

.rot270
{
	transform-origin: center;
	transform: rotate(270deg);
}

.rot0
{
	transform-origin: center;
	transform: rotate(0deg);
}

.tilewidth1 { width: 32px; }
.tilewidth2 { width: 64px; }
.tilewidth3 { width: 96px; }
.tilewidth4 { width: 128px; }
.tilewidth5 { width: 160px; }

.tileheight1 { height: 32px; }
.tileheight2 { height: 64px; }
.tileheight3 { height: 96px; }
.tileheight4 { height: 128px; }
.tileheight5 { height: 160px; }

