/**
 * This file is part of the MarkdownBlog project.
 * It is the style sheet for the sitemap.
 *
 * MarkdownBlog is a lightweight blog software written in php and twitter bootstrap.
 * Its purpose is to provide a easy way to share your thoughts without any Database
 * or special setup needed.
 *
 * Copyright (C) 2014 Philipp Gamper & Max Schrimpf
 *
 * The project is free software: You can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * The file is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with the project. if not, write to the Free Software Foundation, Inc.
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */
@CHARSET "UTF-8";

/* SITEMAP CSS
    -------------------------------------------------- */
.sitemap {
	text-decoration: none;
	margin-bottom: 24px;
}

.sitemap-inner {
	border-bottom: 1px solid #E5E5E5;
}

.sitemap p {
	margin-bottom: 4px;
}

.sitemap ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

.sitemap-top-level li {
	float: left;
	margin: 16px 12px 32px 12px;
	font-weight: bold;
}

.sitemap-top-level li p {
	font-size: 10pt;
}

.sitemap-sub-level {
	font-size: 9pt;
	font-weight: normal;
}

.sitemap-sub-level li {
	float: none;
	margin: 0;
	font-size: 9pt;
	font-weight: normal;
}

.sitemap-sub-level li p {
    margin: 0px;
    padding: 0px;
}

/* RESPONSIVE CSS
    -------------------------------------------------- */
@media ( max-width : 979px) {
	.sitemap {
		font-size: 8pt;
	}
	.sitemap-sub-level {
		margin: 4px 8px 8px 8px
	}
}

@media ( max-width : 767px) {
	.sitemap {
		font-size: 9pt;
	}
	.sitemap-sub-level {
		margin: 4px 16px 16px 8px
	}
	.sitemap-top-level li {
		float: none;
	}
}