Du befindest dich hier: FSI Informatik » Fachschaftsinitiative Informatik » Organisation der FSI » Regelmäßiges » fsien_flotter_dreier » steckbriefe_print.j2   (Übersicht)

Dies ist eine alte Version des Dokuments!


<!DOCTYPE html>

<html>

<head>
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
	<title>Flotter Dreier Sommerfeier 2.1</title>
	<style>
		@page {
			size: A4 landscape;
			margin: 0;
		}
		* {
			/* Setting box-sizing: border-box; induces strange bugs to the Chrome print rendering */
			margin: 0;
			padding: 0;
		}
		#container {
			width: 297mm;
		}
		.card {
			float: left;
			width: 66.25mm;
			height: 44.5mm;
			padding: 4mm;
			font: 12pt/1.3 Helvetica;
		}
		.card .task {
			text-align: center;
			margin-bottom: 12pt;
		}
		.card ul {
			padding-left: 1.1em;
		}
	</style>
</head>
<body>
	<div id="container">
		{% for task in tasks %}
		<div class="card">
			<div class="task">
				Finde <strong>eine</strong> Person, auf die <strong>mindestens zwei</strong> der
				folgenden Eigenschaften zutreffen:
			</div>
			<ul>
				{% for property in task %}
				<li>{{ property }}</li>
				{% endfor %}
			</ul>
		</div>
		{% endfor %}
	</div>
</body>

</html>