]> gitweb.factorcode.org Git - factor.git/blob - extra/webapps/pastebin/pastebin.css
webapps.pastebin: update css
[factor.git] / extra / webapps / pastebin / pastebin.css
1 pre.code {
2     border: 1px dashed #ccc;
3     background-color: #f5f5f5;
4     padding: 5px;
5     color: #000000;
6 }
7
8 table {
9     border-collapse: collapse;
10     table-layout: fixed;
11 }
12
13 table td {
14     padding: 5px;
15     word-wrap: break-word;
16 }
17
18 table th {
19     padding: 5px;
20 }
21
22 table tr:hover {
23     background-color: #f5f5f5;
24 }
25
26 @media screen and (max-width: 480px) {
27
28     th:nth-of-type(3), td:nth-of-type(3) {
29         display: none;
30     }
31 }
32
33 @media (prefers-color-scheme: dark) {
34
35     table tr:hover {
36         background-color: #373e48;
37     }
38 }