
@font-face {
	font-family: "Silkscreen";
	src: url("/font/slkscr.eot"); /* IE9 Compat Modes */
	src: url("/font/slkscr.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
		 url("/font/slkscr.otf")           format("opentype"), /* Open Type Font */
		 url("/font/slkscr.svg")           format("svg"), /* Legacy iOS */
		 url("/font/slkscr.ttf")           format("truetype"), /* Safari, Android, iOS */
		 url("/font/slkscr.woff")          format("woff"), /* Modern Browsers */
		 url("/font/slkscr.woff2")         format("woff2"); /* Modern Browsers */
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Silkscreen";
	src: url("/font/slkscrb.eot"); /* IE9 Compat Modes */
	src: url("/font/slkscrb.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
		 url("/font/slkscrb.otf")           format("opentype"), /* Open Type Font */
		 url("/font/slkscrb.svg")           format("svg"), /* Legacy iOS */
		 url("/font/slkscrb.ttf")           format("truetype"), /* Safari, Android, iOS */
		 url("/font/slkscrb.woff")          format("woff"), /* Modern Browsers */
		 url("/font/slkscrb.woff2")         format("woff2"); /* Modern Browsers */
	font-weight: bold;
	font-style: normal;
}

body, html {
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Silkscreen';
	box-sizing: border-box;
}

body {
	font-size: 8pt;
	border-top: 4px solid #222;
	background-color: #222; /* fallback */;
	background-image: url( '/img/martini-spilled.png' ) top left; /* fallback */
	background: url( '/img/martini-spilled.png' ) top left,
				radial-gradient( circle at top left, #999, #222 50% );
	background-size: contain;
	background-repeat: no-repeat;
	background-attachment: fixed;
	color: #fff;
	text-shadow: 1px 1px 0 #000;
}

a, a:visited, a:active {
	font-weight: bold;
	color: #9faa4a;
	text-decoration: none;
}

a:hover {
	cursor: pointer;
	color: #4660b7;
}

h1 {
	margin: 0;
	text-shadow: 3px 3px 0 #000;
	font-size: 3em;
}

.img-circle {
	z-index: -20;
	border: 4px solid #111;
	border-radius: 50%;
	object-fit: cover;
	object-position: -20px 50%;
	background-color: #fff;
	width: 100px;
	position: fixed;
	bottom: 10px;
	right: 10px;
}

.rev {
	unicode-bidi: bidi-override;
	direction: rtl;
}

.clear {
	clear: both;
}

.vspace {
	margin-top: 40px;
}

.ralign {
	text-align: right;
}

.wide {
	width: 100%;
}

.small {
	font-size: 85%;
}

.gray {
	color: #ccc;
}

.plan {
	padding-bottom: 10px;
}

.btop {
	border-top: 1px solid #ccc !important;
}

.mobile-hidden {
	display: none;
}

#content {
	padding: 10px;
}

#nav {
	list-style-type: none;
}

#nav li {
	display: inline;
	padding-right: 20px;
}

#entry {
	max-width: 48em;
	padding: 10px;
	border-radius: 10px;
	background-color: rgba( 255, 255, 255, 0.1 );
	font-family: Helvetica;
}

#entry pre {
	overflow-x: auto;
	font-size: 0.8em;
	border-radius: 10px;
	padding: 10px;
	display: block;
	background-color: rgba( 0, 0, 0, 0.3 )
}

.updates {
	margin-top: 40px;
}


@media only screen and (min-width: 48em) {
	body {
		font-size: 12pt;
		text-shadow: 2px 2px 0 #000;
		border-top: 10px solid #222;
		background: url( '/img/martini-spilled.png' ) no-repeat -100px -40px,
					radial-gradient( circle at top left, #999, #222 50% );
		background-size: inherit;
		background-repeat: no-repeat;
		background-attachment: fixed;
	}

	.mobile-only {
		display: none;
	}

	.mobile-hidden {
		display: block;
	}

	.updates {
		margin-top: 0;
		max-height: 600px;
		overflow-y: auto;
		scrollbar-width: thin;
		scrollbar-color: #999 #222;
	}

	#content {
		padding: 2em;
	}

	.col-grid-2 {
		column-gap: 20px;
		display: grid;
		grid-template-columns: auto auto;
	}

	.xsmall {
		font-size: 65%;
	}

	.img-circle {
		width: 250px;
		bottom: 2em;
		right: 2em;
	}
}

