Subversion Repositories eFlore/Applications.del

Rev

Rev 1824 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1824 Rev 1825
Line 12... Line 12...
12
				color:#fd8c13;
12
				color:#fd8c13;
13
			}
13
			}
14
			.emphase {
14
			.emphase {
15
				color: #777777;
15
				color: #777777;
16
			}
16
			}
17
			h3 {
17
			.observation {
18
				font-size:14px;
18
                font-size: 13px;
19
				color:#454341 !important;
19
                color: #454341 !important;
20
				margin:0px;
20
                margin: 0;
21
			}
-
 
22
			h3 > a {
21
            }
23
				color:#454341;
22
            .observation strong {
-
 
23
                font-weight: bold;
24
			}
24
            }
25
			h1 a, h3 a, h4 a {
25
            .observation > a {
26
				color:inherit;
26
                color:#454341;
27
				border-bottom:dotted 1px;
27
                border-bottom: dotted 1px;
28
			}
-
 
29
			h3 a {
-
 
30
				border-color:#CCCCCC;
28
                border-color: #CCCCCC;
31
			}
29
            }
32
			a {
30
			a {
33
				cursor:pointer;
31
				cursor:pointer;
34
				color:#598000;
32
				color:#598000;
35
				text-decoration:none;
33
				text-decoration:none;
36
				border-bottom:1px dotted #95ae5d;
34
				border-bottom:1px dotted #95ae5d;
37
			}
35
			}
38
			a:hover {
36
			a:hover {
39
				color:#FD8C13;
37
				color:#FD8C13;
40
				border-bottom:1px dotted #95ae5d;
38
				border-bottom:1px dotted #95ae5d;
41
			}
39
			}
42
			.lire-suite {
-
 
43
				padding-left:10px;
-
 
44
				background:url(http://www.tela-botanica.org/sites/commun/generique/images/graphisme/petit_carre.png) no-repeat 0px 4px;
-
 
45
			}
-
 
46
			.description_message {
40
			.description_message {
47
				color: #333333;
41
				color: #333333;
48
				font-size: 1.1em;
42
				font-size: 1.1em;
49
				font-style: italic;
43
				font-style: italic;
50
				padding-top: 10px;
44
				padding-top: 10px;
Line 61... Line 55...
61
			l'outil <a href="http://www.tela-botanica.org/appli:identiplante" >Identiplante</a>
55
			l'outil <a href="http://www.tela-botanica.org/appli:identiplante" >Identiplante</a>
62
			<br /><br />
56
			<br /><br />
63
		</div>
57
		</div>
Line 64... Line 58...
64
 
58
 
65
		<?php foreach ($liste_observations as $observation) : ?>
59
		<?php foreach ($liste_observations as $observation) : ?>
66
			<h3>
60
			<div class="observation">
67
				<a href="<?= $observation['lien']; ?>">Observation <?= $observation['id'] ?> - <em><?= $observation['nom_propose']; ?></em> </a>
61
				<a href="<?= $observation['lien']; ?>">Observation <?= $observation['id'] ?> - <em><strong><?= $observation['nom_propose']; ?></strong></em> </a>
68
				observ&eacute;e le <?= $observation['date']; ?> &agrave; <?= $observation['lieu']; ?>, par <?= $observation['auteur']; ?>
62
					observ&eacute;e le <strong><?= $observation['date']; ?></strong> &agrave; <strong><?= $observation['lieu']; ?></strong>, par <?= $observation['auteur']; ?>
69
			</h3>
63
			</div>
70
			<br />
64
			<br />
Line 71... Line 65...
71
		<?php endforeach ; ?>
65
		<?php endforeach ; ?>
72
 
66