<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/**
 * Styles for the Fokus demo page.
 * 
 * @author Hakim El Hattab | http://hakim.se
 */

* {
	margin: 0;
	padding: 0;
}

::selection { 
	background: #d1edf8;
}

html, 
body {
	height: 100%;
}

body {
	background: #eee;
	font-family: 'Lato', Helvetica, sans-serif;
	font-size: 16px;
	color: #222;
}

a {
	color: #c2575b;
	text-decoration: none;

	-webkit-transition: 0.15s color ease;
	   -moz-transition: 0.15s color ease;
	    -ms-transition: 0.15s color ease;
	     -o-transition: 0.15s color ease;
	        transition: 0.15s color ease;
}
	a:hover {
		color: #f76f76;
	}

h1, 
h2 {
	font-size: 24px;
}

.intro {
	display: inline-block;
	background: #eee;
	padding: 40px 60px;
	overflow-y: auto;

	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
	.intro h1 {
		position: relative;
	}
	.intro h1:after {
		content: '';
		position: absolute;
		display: inline-block;
		width: 48px;
		height: 48px;
		top: -9px;
		margin-left: 7px;
		
		background-image: url( 'fokus48.png' );
		background-repeat: no-repeat;
	}
	.intro&gt;article {
		width: 400px;
	}
	.intro p {
		margin: 10px 0 10px 0;
		font-size: 16px;
		line-height: 1.5em;
	}
	.intro small {
		display: block;
		margin-top: 10px;
		padding-top: 10px;
		color: #333;
		font-size: 0.85em;
		border-top: 1px dashed #ccc;

		-webkit-text-size-adjust: none;
	}
	.intro .sharing {
		margin-top: 20px;
	}

.demo {
	border-top: 1px solid #ccc;
	padding: 40px 60px;
	background: #fff;
}
	.demo&gt;article {
		display: inline-block;
		max-width: 320px;
		vertical-align: top;
		margin: 0 20px 20px 0;
		line-height: 1.5em;
	}
	.demo&gt;article.double {
		max-width: 640px;
	}
	.demo&gt;article img {
		max-width: 100%;
		margin-bottom: 10px;
	}
	.demo&gt;article h2 {
		margin-bottom: 10px;
	}
	.demo&gt;article .image-link {
		display: block;
	}

</pre></body></html>