Commit | Line | Data |
---|---|---|
9099c61d RK |
1 | /* This Source Code Form is subject to the terms of the Mozilla Public\r |
2 | * License, v. 2.0. If a copy of the MPL was not distributed with this\r | |
3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */\r | |
3327253e RK |
4 | \r |
5 | h1 {\r | |
6 | margin: 0;\r | |
7 | border-bottom: 1px solid #008484;\r | |
8 | }\r | |
9 | \r | |
10 | h2 {\r | |
11 | margin-top: 2em;\r | |
12 | }\r | |
13 | \r | |
14 | table {\r | |
15 | table-layout: fixed;\r | |
16 | width: 100%;\r | |
17 | margin-bottom: 1em;\r | |
18 | padding: 0.5em 0;\r | |
569543b3 | 19 | border-radius: 10px;\r |
3327253e RK |
20 | }\r |
21 | \r | |
22 | #disk,\r | |
23 | #memory,\r | |
24 | #offline {\r | |
25 | background-color: #9C9CFF;\r | |
26 | color: #000000;\r | |
27 | }\r | |
28 | \r | |
29 | th {\r | |
30 | width: 14em;\r | |
31 | white-space: nowrap;\r | |
32 | text-align: end;\r | |
33 | }\r | |
34 | \r | |
35 | td {\r | |
36 | word-wrap: break-word;\r | |
37 | }\r | |
38 | \r | |
39 | #col-key {\r | |
40 | width: 60%;\r | |
41 | }\r | |
42 | \r | |
43 | #col-dataSize,\r | |
44 | #col-fetchCount,\r | |
45 | #col-lastModified,\r | |
46 | #col-expires {\r | |
47 | width: 13%;\r | |
48 | }\r | |
49 | \r | |
50 | #entries > tbody > tr:nth-child(odd) {\r | |
51 | background-color: rgba(255, 159, 0, .05);\r | |
52 | }\r | |
53 | \r | |
54 | #entries > tbody > tr:nth-child(even) {\r | |
55 | background-color: rgba(255, 159, 0, .1);\r | |
56 | }\r | |
57 | \r | |
58 | #entries > tbody > tr > td {\r | |
59 | padding: .5em 0;\r | |
60 | text-align: center;\r | |
61 | }\r | |
62 | \r | |
63 | #entries > thead > tr > th {\r | |
64 | text-align: center;\r | |
65 | white-space: normal;\r | |
66 | }\r | |
67 | \r | |
68 | #entries > thead > tr > th:first-child,\r | |
69 | #entries > tbody > tr > td:first-child {\r | |
70 | text-align: start;\r | |
71 | }\r |