-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_style.css
61 lines (51 loc) · 876 Bytes
/
main_style.css
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
table, th, td {
border: 1px solid black;
border-collapse: collapse;
padding: 10px;
margin-left: auto;
margin-right: auto;
font-size: small;
max-width: min-content;
}
td {
max-width: auto;
max-height: 3em;
word-wrap: break-word;
overflow: auto;
overflow-y: auto;
text-align: center;
text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
#print_table {
max-width: 100%;
}
.desc {
max-width: 20em;
max-height: 4em;
overflow-y: auto;
}
.created {
background-color: green;
}
.received {
background-color: yellow;
}
.in_progress {
background-color: blue;
}
.finished {
background-color: red;
}
.service_wwa {
background-color: crimson;
}
.unknown {
background-color: pink;
}
table {
width: 100%;
max-width: device-width;
}
body {
overflow-x: auto;
}