diff options
| author | Étienne Loks <etienne.loks@peacefrogs.net> | 2010-12-26 19:05:40 +0100 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2010-12-26 19:05:40 +0100 | 
| commit | 4eb251214a9751ca53cbabb0fac5fef1ba7f7122 (patch) | |
| tree | 518476e1ecc1b7a3fb982df2762565253bddbd5d | |
| parent | 84f5d4f5210ee75cb2eef8e7d21fbb13690f9f50 (diff) | |
| download | Ishtar-4eb251214a9751ca53cbabb0fac5fef1ba7f7122.tar.bz2 Ishtar-4eb251214a9751ca53cbabb0fac5fef1ba7f7122.zip  | |
First work on the presentation
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | media/images/ishtar-bg.jpg | bin | 0 -> 18732 bytes | |||
| -rw-r--r-- | media/style.css | 54 | 
3 files changed, 55 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index bf2bcff0d..ebe020a67 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ django-simple-history/*  communesdefrancedetaillees.csv  projet_données_d_échange_2010.zip  ishtar-docs +ishtar-logo diff --git a/media/images/ishtar-bg.jpg b/media/images/ishtar-bg.jpg Binary files differnew file mode 100644 index 000000000..31dff0f15 --- /dev/null +++ b/media/images/ishtar-bg.jpg diff --git a/media/style.css b/media/style.css new file mode 100644 index 000000000..fc2a87f1f --- /dev/null +++ b/media/style.css @@ -0,0 +1,54 @@ +body{ +    font-family:Arial, Helvetica, sans-serif; +    font-size: 11pt; +    margin:0; +    color:#61615C; +    background-image:url(images/ishtar-bg.jpg); +    background-repeat:no-repeat; +    background-position:right top; +} + + +div#header{ +    width:100%; +    text-align:center; +    font-size: 0.9em; +    background-color: #EEE; +    border-bottom:1px solid #CCC; +    margin-bottom:10px; +} + +div.form { +    margin-left:auto; +    margin-right:auto; +    padding:1em; +    display:block; +    width:500px; +    background-color: #EEE; +    border:1px solid #CCC; +    border-radius:10px; +    text-align:center; +} + +div.form table{ +    padding:0.2em; +    margin-left:auto; +    margin-right:auto; +} + +div.form table th{ +    text-align:left; +} + +.info{ +    margin-left:auto; +    margin-right:auto; +    padding:1em; +    display:block; +    width:500px; +} + +.info p{ +    padding:0; +    margin:0.2em; +}  | 
