commit 8b0d78910cfc368456d81cd301b9999f96b0d5d7 parent e18a2966015da29d31579b32ff2b33ad2b5ebfbe Author: Yoann <yoann.b87@voila.fr> Date: Wed, 23 Mar 2011 17:15:46 +0100 Début html5 (?) Diffstat:
| A | code/html5/img/aide.png | | | 0 | |
| A | code/html5/img/config.png | | | 0 | |
| A | code/html5/img/icon.png | | | 0 | |
| A | code/html5/img/mode_chrono.png | | | 0 | |
| A | code/html5/img/mode_marathon.png | | | 0 | |
| A | code/html5/img/mode_normal.png | | | 0 | |
| A | code/html5/img/mode_ombre.png | | | 0 | |
| A | code/html5/img/rel/-1.png | | | 0 | |
| A | code/html5/img/rel/0.png | | | 0 | |
| A | code/html5/img/rel/10.png | | | 0 | |
| A | code/html5/img/rel/5.png | | | 0 | |
| A | code/html5/img/rel/7.png | | | 0 | |
| A | code/html5/img/rel/9.png | | | 0 | |
| A | code/html5/img/splash.png | | | 0 | |
| A | code/html5/index.html | | | 55 | +++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
15 files changed, 55 insertions(+), 0 deletions(-)
diff --git a/code/html5/img/aide.png b/code/html5/img/aide.png Binary files differ. diff --git a/code/html5/img/config.png b/code/html5/img/config.png Binary files differ. diff --git a/code/html5/img/icon.png b/code/html5/img/icon.png Binary files differ. diff --git a/code/html5/img/mode_chrono.png b/code/html5/img/mode_chrono.png Binary files differ. diff --git a/code/html5/img/mode_marathon.png b/code/html5/img/mode_marathon.png Binary files differ. diff --git a/code/html5/img/mode_normal.png b/code/html5/img/mode_normal.png Binary files differ. diff --git a/code/html5/img/mode_ombre.png b/code/html5/img/mode_ombre.png Binary files differ. diff --git a/code/html5/img/rel/-1.png b/code/html5/img/rel/-1.png Binary files differ. diff --git a/code/html5/img/rel/0.png b/code/html5/img/rel/0.png Binary files differ. diff --git a/code/html5/img/rel/10.png b/code/html5/img/rel/10.png Binary files differ. diff --git a/code/html5/img/rel/5.png b/code/html5/img/rel/5.png Binary files differ. diff --git a/code/html5/img/rel/7.png b/code/html5/img/rel/7.png Binary files differ. diff --git a/code/html5/img/rel/9.png b/code/html5/img/rel/9.png Binary files differ. diff --git a/code/html5/img/splash.png b/code/html5/img/splash.png Binary files differ. diff --git a/code/html5/index.html b/code/html5/index.html @@ -0,0 +1,55 @@ +<?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 { + border-bottom: thin solid blue; + text-align: center; +} + +#currentWord { + 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> +</head> +<body> +<div id="screen"> + <div id="centralWord">MotCentral</div> + <div id="currentWord">MotNuage</div> + <div id="relations"> + <div id="r1" class="relation rid7">MotNuage est un synonyme de MotCentral</div> + <div id="r2" class="relation rid5">MotNuage a pour contraire MotCentral</div> + <div id="r3" class="relation rid0">MotNuage est une idée associée à MotCentral</div> + <div id="r4" class="relation rid-1">Poubelle</div> + </div> +</div> +</body> +</html>