]> gitweb.factorcode.org Git - factor.git/blob - extra/webapps/pastebin/pastebin.css
12c11aa4a5f9bd45c2a9442f9688c6e04cff2152
[factor.git] / extra / webapps / pastebin / pastebin.css
1 input, textarea, select {
2     font-size: 12pt;
3     border: 1px solid #dbdbdb;
4     border-radius: 5px;
5     padding: 5px;
6 }
7
8 textarea {
9     font-family: monospace;
10 }
11
12 pre.code {
13     border: 1px solid #dbdbdb;
14     border-radius: 5px;
15     background-color: #f7f7f7;
16     padding: 5px;
17     color: #000000;
18 }
19
20 table {
21     border-collapse: collapse;
22     table-layout: fixed;
23 }
24
25 table td {
26     padding: 5px;
27     word-wrap: break-word;
28 }
29
30 table th {
31     padding: 5px;
32 }
33
34 table tr:hover {
35     background-color: #f5f5f5;
36 }
37
38 @media screen and (max-width: 480px) {
39
40     th:nth-of-type(3), td:nth-of-type(3) {
41         display: none;
42     }
43 }
44
45 @media (prefers-color-scheme: dark) {
46
47     table tr:hover {
48         background-color: #373e48;
49     }
50 }