Commit a3b3b0f7882f0467a24409384a1cf67c0e1db6c6

Authored by grouille
1 parent 6856ca3b

Test

Showing 2 changed files with 7 additions and 26 deletions   Show diff stats
site/css/style.css
... ... @@ -62,24 +62,3 @@ a, a:hover {
62 62 .logo {
63 63 text-align:center;
64 64 }
65   -
66   -/* Page d'accueil */
67   -
68   -#multicouche {
69   - position: relative;
70   -}
71   -#multicouche img {
72   - position: absolute;
73   - top: 0;
74   - left: 0;
75   - width: 100%;
76   - height: auto;
77   -}
78   -
79   -#coucheinf {
80   - z-index: 2;
81   -}
82   -
83   -#couchesup {
84   - z-index: 4;
85   -}
... ...
site/network.php
1   -
  1 +<?php
  2 +session_start();
  3 +include("head.php");
  4 +include("header.php");
  5 +?>
2 6 <div class="row">
3 7 <br/>
4 8 <br/>
5 9 <img src="img/computer.jpg" alt="computer" style="width: 100%; height: auto; margin-top: 60px;"/>
6   - <div id="multicouche">
7   - <img id="coucheinf" src="img/empty.jpg" alt="empty" />
8   - <img id="couchesup" src="img/pi.png" alt="pi" />
9   - </div>
  10 + <img src="img/empty.jpg" alt="empty" style="width: 100%; height: auto;" />
  11 + <img src="img/pi.png" alt="pi" style="width: 100%; height: auto;" />
10 12 </div>
11 13 </div>
... ...