blob: 0cc067a7555083ac880eb3b07f1ea6e316498f34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/*-- page "Nouvelle page" uniquement --*/
.new_page
{
padding: 0 20px;
}
.new_page .form_zone
{
background-color: white;
padding: 10px;
}
.new_page #page_location, .new_page input[type=submit]
{
color: #ff1d04;
font-size: medium;
border-radius: 4px;
background-color: white;
border: lightgrey 2px outset;
}
.new_page #page_location:hover, .new_page input[type=submit]:hover
{
background-color: #ffff00;
border-radius: 4px;
border: lightgrey 2px outset;
cursor: pointer;
}
.label_textarea
{
vertical-align: top;
}
|