penguin/AstroJS

Javascript framework for my blog

botanjs/src/Astro/Blog/Layout/TwoColumn.css

raw ยท 1500 bytes

.contentWrap {
	position: relative;
	width: 100%;
}

#dockleft {
	position: absolute;
	z-index: 0;
}

.main {
	/* background-color: #FAFAFA; */
	vertical-align: top;
	min-width: 80%;

	position: relative;
}

/**
 * Simply defined as:
 * Text / Text / Text . Text / Text / Tex
 **/
ul.breadcrumb > li { display: inline-block; }
ul.breadcrumb > li:before { content: "/"; }
ul.breadcrumb > li:first-child:before,
ul.breadcrumb > li.sep + li:before,
ul.breadcrumb > li.sep:before { content: " "; }
ul.breadcrumb > li.sep:after { content: "\2022"; }

.nav_panel {
	padding-left 0.5em;
	min-width: 20%;
}

#dockright {
	position: relative;
	/*border-right: #76400C solid 0.2em;*/
}

#dockright > div {
    float: right;

	margin: 0 -.3em;
	padding: 0 0.2em 2em 0.2em;
	display: inline-block;
	width: 0;
}

#extend_sec {
	min-height: 7px;
}

#extend_sec, #dockright {
	/* Same as dockright */
	width: 100%;
}

.vpole {
	/* Should be the same as parent */
	padding: 0 0.5em;
	position: relative;
}

#bottom_control {
	text-align: right;
}

.p_navigation {
	clear: both;
}

.p_navigation > a, .p_controls > a {
	color: #333;
	padding: 0.2em 0.5em;
}

.p_navigation > a {
	font-size: 0.8em;
	font-family: custom-sans;
}

.p_controls > a {
	color: #333;
	font-size: 1.2em;
}

.ptop {
	margin-left: -1em !important;
}
/*Backgrounds*/

/* This style is necessary
 * to prevent anchor shifting issue
 */
#main_background {
	position: absolute;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

/*End_background*/