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