Files: 74e6a9efcd58175b0b939fbc958cf2f8a77597ba / resources / public / css / style.css
1238 bytesRaw
1 | /* some style */ |
2 | |
3 | html, body { |
4 | padding: 0; |
5 | margin: 0; |
6 | font-family: 'Space Mono', sans-serif; |
7 | } |
8 | |
9 | .theme-dark { |
10 | background-color: #0F192A; |
11 | color: white; |
12 | } |
13 | |
14 | .theme-light { |
15 | background-color: white; |
16 | color: #0F192A; |
17 | } |
18 | |
19 | button, input { |
20 | font-family: 'Space Mono', sans-serif; |
21 | background-color: #0F192A; |
22 | border: 1px solid white; |
23 | color: white; |
24 | padding: 3px; |
25 | } |
26 | |
27 | button { |
28 | margin-left: 10px; |
29 | padding-left: 10px; |
30 | padding-right: 10px; |
31 | } |
32 | |
33 | button:hover, input:hover { |
34 | border: 1px solid black; |
35 | background-color: white; |
36 | color: black; |
37 | } |
38 | |
39 | button:hover { |
40 | cursor: pointer; |
41 | } |
42 | |
43 | img { |
44 | max-width: 100%; |
45 | } |
46 | |
47 | .query-link { |
48 | display: block; |
49 | padding: 3px; |
50 | } |
51 | |
52 | .theme-dark .query-link { |
53 | color: white; |
54 | } |
55 | |
56 | .theme-light .query-link { |
57 | color: #0F192A; |
58 | } |
59 | |
60 | .theme-dark .query-link.selected { |
61 | background-color: white; |
62 | color: black; |
63 | } |
64 | |
65 | .theme-light .query-link.selected { |
66 | background-color: black; |
67 | color: white; |
68 | } |
69 | |
70 | label { |
71 | display: block; |
72 | border: 1px solid lightgrey; |
73 | margin: 10px; |
74 | padding: 5px; |
75 | } |
76 | |
77 | h1, h3 { |
78 | margin: 0px; |
79 | padding: 0px; |
80 | } |
81 | |
82 | pre { |
83 | font-family: 'Space Mono', sans-serif; |
84 | white-space: pre-line; |
85 | } |
86 | |
87 | .theme-dark pre { |
88 | background-color: #0F192A; |
89 | } |
90 | |
91 | .theme-light pre { |
92 | background-color: lightgrey; |
93 | } |
94 |
Built with git-ssb-web