From: x2003bruneau Date: Wed, 9 Aug 2006 22:15:40 +0000 (+0000) Subject: Improvement of my new skin : use 'flags' instread of color blocks X-Git-Tag: xorg/0.9.11~122 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=3a84c1191ef0c2e503edf95def102bd276cc5f29;p=platal.git Improvement of my new skin : use 'flags' instread of color blocks git-svn-id: svn+ssh://murphy/home/svn/platal/trunk@793 839d8a87-29fc-0310-9880-83ba4fa771e5 --- diff --git a/htdocs/css/keynote.css b/htdocs/css/keynote.css index c3dcbb0..9a04786 100644 --- a/htdocs/css/keynote.css +++ b/htdocs/css/keynote.css @@ -25,7 +25,9 @@ body { font-family: "Arial", sans-serif; + font-size: 90%; background: url('../images/skins/keynote_bg.png') top left repeat-x; + background-attachment: fixed; background-color: #525168; color: #fff; @@ -223,30 +225,27 @@ div.contact div.long { [ onglets des profils ] *******************************************************************************/ -table.flags { - margin: 1em 0em 0em 0em; +table.flags, tr.flags { + margin: 0; } table.flags input { margin: 0px 2px; padding: 0px; } table.flags td.texte, tr.flags td.texte { font-size: smaller; font-weight: bold; - padding: 3px; + padding: 0 8px 0 0; } table.flags td.vert, tr.flags td.vert { - background: green; - padding: 3px; - text-align: center; + background: url('../images/icons/flag_green.gif') top right no-repeat; + padding: 0 16px 0 0; } -table.flags td.orange, tr.flags td.orange { - background: #ff9900; - padding: 3px; - text-align: center; +table.flags td.orange, tr.flags td.orange { + background: url('../images/icons/flag_orange.gif') top right no-repeat; + padding: 0 16px 0 0; } table.flags td.rouge, tr.flags td.rouge { - background: red; - padding: 3px; - text-align: center; + background: url('../images/icons/flag_red.gif') top right no-repeat; + padding: 0 16px 0 0; } table.cadre_a_onglet{ diff --git a/htdocs/images/icons/flag_green.gif b/htdocs/images/icons/flag_green.gif new file mode 100644 index 0000000..f6e21e0 Binary files /dev/null and b/htdocs/images/icons/flag_green.gif differ diff --git a/htdocs/images/icons/flag_red.gif b/htdocs/images/icons/flag_red.gif new file mode 100644 index 0000000..f1de9db Binary files /dev/null and b/htdocs/images/icons/flag_red.gif differ