Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev Author Line No. Line
503 jpm 1
@CHARSET "UTF-8";
514 jpm 2
/*----------------------------------------------------------------------------------------------------------*/
3
/* Balises */
4
button, input, select, textarea {
5
    font-size: 100%;
6
    margin: 0;
7
    vertical-align: middle;
8
}
9
input, textarea {
10
    -moz-transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
11
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
12
    margin-left: 0;
13
    border-radius: 3px 3px 3px 3px;
14
    display: inline-block;
15
    height: 18px;
16
    line-height: 18px;
17
    padding: 4px;
18
    width:90%;
19
}
20
textarea {
21
	height:180px;
22
}
23
input:focus, textarea:focus {
24
    border-color: rgba(82, 168, 236, 0.8);
25
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.6);
26
    outline: 0 none;
27
}
28
label {
29
    color: #333333;
30
    display: block;
31
    margin-bottom: 5px;
32
}
33
/*----------------------------------------------------------------------------------------------------------*/
34
/* Disposition */
503 jpm 35
#zone-pied{
36
	text-align:center;
37
}
38
#eflore_pied_page{
39
	text-align:center;
40
}
41
#zone-debug{
42
	background-color:grey;
43
	color:white;
514 jpm 44
}