From 8bdb6b66af771640701041c219ca17e5f59f216f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= Date: Sun, 13 Feb 2011 17:47:17 +0100 Subject: [PATCH] Fichiers html, css et js de base. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Structure HTML5 de base. * Titre de la page. * Création d'une «page» Raphaël. * Un peu de vert pour les couleurs. * Mise en page centrée. --- grunt.js | 3 +++ index.html | 34 ++++++++++++++++++++++++++++++++++ style.less | 18 ++++++++++++++++++ 3 files changed, 55 insertions(+) create mode 100644 grunt.js create mode 100644 index.html create mode 100644 style.less diff --git a/grunt.js b/grunt.js new file mode 100644 index 0000000..2c5d39b --- /dev/null +++ b/grunt.js @@ -0,0 +1,3 @@ +new Event.observe(window, 'load', function() { + r = Raphael("ide", 640, 480); +}); diff --git a/index.html b/index.html new file mode 100644 index 0000000..a49dda5 --- /dev/null +++ b/index.html @@ -0,0 +1,34 @@ + + + + + + Gruntnetwork + + + + + + + + +
+

Gruntnetwork IDE

+
+
+

+ Cette application nécessite JavaScript pour fonctionner. +

+
+
+ + diff --git a/style.less b/style.less new file mode 100644 index 0000000..87e754d --- /dev/null +++ b/style.less @@ -0,0 +1,18 @@ +h1 { + color: #8b4; + text-align: center; +} + +article { + text-align: center; +} + +article #noscript { + border: medium solid #8a8; + display: inline-block; + padding: 1em; +} + +#ide > * { + border: medium solid #8a8; +}