blob: 4a0dbb0e9f148f7ce8d0034404ce23d9d3c7f2ca (
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
31
32
33
34
35
36
37
38
|
.maintenance .basic_div
{
margin-top: 8px;
}
.maintenance p, .maintenance form
{
margin: 10px 0;
}
.maintenance #log_table h4
{
margin-top: 10px;
margin-bottom: 4px;
}
.maintenance table
{
border-collapse: collapse;
font-size: smaller;
}
.maintenance table th, .maintenance table td
{
border: 1px black solid;
}
.maintenance select, .maintenance input[type="file"]::file-selector-button
{
color: #ff1d04;
font-size: medium;
border-radius: 4px;
background-color: white;
border: lightgrey 2px outset;
}
@media screen and (max-width: 480px)
{
.maintenance select
{
font-size: 86%;
}
}
|