Subversion Repositories eFlore/Applications.del

Rev

Rev 142 | Rev 146 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 aurelien 1
/** Add css rules here for your application. */
2
 
3
 
4
/** Example rules used by the template application (remove for your app) */
5
h1 {
6
  font-size: 2em;
7
  font-weight: bold;
8
  color: #777777;
118 gduche 9
  margin: 40px 0px 0px;
1 aurelien 10
  text-align: center;
11
}
12
 
118 gduche 13
/*#titre {background:url(/img/logo.png) no-repeat; height:100px; border:solid 1px red; width:250px; text-align:left; padding-top:50px}*/
14
 
1 aurelien 15
.sendButton {
16
  display: block;
17
  font-size: 16pt;
18
}
19
 
20
/** Most GWT widgets already have a style name defined */
21
.gwt-DialogBox {
22
  width: 400px;
23
}
24
 
25
.dialogVPanel {
26
  margin: 5px;
27
}
28
 
29
.serverResponseLabelError {
30
  color: red;
31
}
32
 
119 aurelien 33
/** Erreur dans un formulaire de type texte **/
34
.erreurFormTexte {
35
	background-color : red ;
36
}
37
 
142 aurelien 38
/** Style pour les barres de vote **/
39
.barreRepartition {
40
	height:20px;
41
	width:300px;
42
	border:1px solid black;
43
	background-color: red;
44
}
45
 
46
.elementBarreRepartition {
47
	height: 100%;
48
}
49
 
50
.voteOui {
51
	background-color: blue;
52
	border-right: 1px solid black;
53
}
54
 
1 aurelien 55
/** Set ids using widget.getElement().setId("idOfElement") */
56
#closeButton {
57
  margin: 15px 6px 6px;
58
}
53 gduche 59
 
143 gduche 60
#titre {background:url(./img/identiplante.png) no-repeat center -1px; padding-top:80px}
118 gduche 61
 
82 benjamin 62
.boutonPlus {border:none; color:rgba(0,0,0,0); background:url("./img/zoom_in.png"); width:16px; height:16px; cursor:pointer;}
63
.boutonMoins {border:none; color:rgba(0,0,0,0); background:url("./img/zoom_out.png"); width:16px; height:16px; cursor:pointer;}
118 gduche 64
 
143 gduche 65
.titre{font-size:20px; font-weight:bold}
66
.sousTitre{font-size:15px; font-weight:bold}
67
.petit {font-size:11px; color:#888}
68
.gras {font-weight:bold}
69
.plein {width:100%;}
70
.tiers {width:30%}
71
 
72
.actif {background:#8EB533}
73
.inactif {background:white}
74
 
75
.gauche { float:left}
76
.droite { float:right}