Skip to content
Snippets Groups Projects
Select Git revision
  • 8f797ab27fd39e7aaee2cc0790d96e8d5ae2037e
  • master default protected
  • 9.0
  • marcus/wix3
  • 8.0
  • nt-tools
  • 7.8
  • 7.6
  • 7.4
  • 7.2
  • 7.0
  • 0.6
  • rosuav/latex-markdown-renderer
  • rxnpatch/rxnpatch
  • marcus/gobject-introspection
  • rxnpatch/8.0
  • rosuav/pre-listening-ports
  • rosuav/async-annotations
  • rosuav/pgsql-ssl
  • rxnpatch/rxnpatch-broken/2023-10-06T094250
  • grubba/fdlib
  • v8.0.2020
  • v8.0.2018
  • v8.0.2016
  • v8.0.2014
  • v8.0.2012
  • v8.0.2008
  • v8.0.2006
  • v8.0.2004
  • v8.0.2002
  • v8.0.2000
  • v8.0.1998
  • v8.0.1996
  • v8.0.1994
  • v8.0.1992
  • v8.0.1990
  • v8.0.1988
  • v8.0.1986
  • rxnpatch/clusters/8.0/2025-04-29T124414
  • rxnpatch/2025-04-29T124414
  • v8.0.1984
41 results

computedgoto.h

Blame
  • munchkin.html 1.58 KiB
    <!doctype html>
    <html>
    <head>
    	<meta charset="utf-8"/>
    	<meta name="viewport" content="width=device-width,initial-scale=1.0"/>
    	<link rel="stylesheet" href="./style.css"/>
    	<script src="script.js"></script>
    	<title>Munchkin Life Counter</title>
    </head>
    <body>
    	<template id="life-templ">
    		<div class="lifecounter">
    			<div class="lifename"></div>
    			<div class="lifecounter-sub">
    				<button class="life-btn btn-up">
    					<span class="arrow"/>
    				</button>
    				<span class="life-count">10</span>
    				<button class="life-btn btn-down">
    					<span class="arrow"/>
    				</button>
    			</div>
    		</div>
    	</template>
    
    	<nav>
    		<ul>
    			<li><a href=".">Hem</a></li>
    			<li><a id='bookmark'>Länk till det här spelet</a></li>
    		</ul>
    		<ul>
    			<li><a href='https://git.lysator.liu.se/hugo/munchkin-lifecounter' class='last'>Källkod</a></li>
    		</ul>
    	</nav>
    
    	<div class="root">
    	<div class="dice" onclick="rolldice()">
    		<svg viewbox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
    			<rect width="100" height="100" rx="15" style="fill:white;stroke:black"/>
    			<circle cx="25" cy="25" r="10"/>
    			<circle cx="75" cy="25" r="10"/>
    			<circle cx="50" cy="50" r="10"/>
    			<circle cx="25" cy="75" r="10"/>
    			<circle cx="75" cy="75" r="10"/>
    			<circle cx="75" cy="75" r="10"/>
    		</svg>
    		<!--
    		<span class="dice-text">0</span>
    		<button onclick="rolldice()">Roll</button>
    		-->
    	</div>
    
    	<div class="counters">
    	</div>
    	</div>
    
    	<template id='error'>
    		<div class='error'>
    			<h1>Någonting gick fel!</h1>
    			<span class='text'></span>
    			<br/>
    			<a href='.'>Återvänd till startsidan</a>
    		</div>
    	</template>
    </body>
    </html>