58 lines
1.7 KiB
HTML
58 lines
1.7 KiB
HTML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>PtiClic pre-alpha 0.2</title>
|
|
<style>
|
|
#screen {
|
|
border: thin solid blue;
|
|
width: 320px;
|
|
position: absolute;
|
|
height: 400px;
|
|
}
|
|
|
|
.centralWord.caption {
|
|
border-bottom: thin solid blue;
|
|
text-align: center;
|
|
}
|
|
|
|
.currentWord.caption {
|
|
border-bottom: thin solid blue;
|
|
text-align: center;
|
|
}
|
|
|
|
.relation {
|
|
padding-left: 76px;
|
|
background-color: #dfe;
|
|
-moz-border-radius: 10px;
|
|
margin: 10px;
|
|
min-height: 72px;
|
|
background-repeat: no-repeat;
|
|
background-position: 0 center;
|
|
}
|
|
|
|
.relation.rid-1 { background-image: url("img/rel/-1.png"); }
|
|
.relation.rid0 { background-image: url("img/rel/0.png"); }
|
|
.relation.rid5 { background-image: url("img/rel/5.png"); }
|
|
.relation.rid7 { background-image: url("img/rel/7.png"); }
|
|
.relation.rid9 { background-image: url("img/rel/9.png"); }
|
|
.relation.rid10 { background-image: url("img/rel/10.png"); }
|
|
|
|
</style>
|
|
<script src="jquery-1.5.1.min.js" language="javascript"></script>
|
|
<script src="pticlic.js" language="javascript"></script>
|
|
</head>
|
|
<body>
|
|
<div id="screen">
|
|
<div class="centralWord caption">MotCentral</div>
|
|
<div class="currentWord caption">MotNuage</div>
|
|
<div id="relations">
|
|
<div id="r1" class="relation rid7"><span class="currentWord">MotNuage</span> est un synonyme de <span class="centralWord">MotCentral</span></div>
|
|
<div id="r2" class="relation rid5"><span class="currentWord">MotNuage</span> a pour contraire <span class="centralWord">MotCentral</span></div>
|
|
<div id="r3" class="relation rid0"><span class="currentWord">MotNuage</span> est une idée associée à <span class="centralWord">MotCentral</span></div>
|
|
<div id="r4" class="relation rid-1">Poubelle</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|