Neale Pickett
·
2025-06-29
programmer.css
1body {
2 font: sans-serif;
3 background: light-dark(#ccc, #333);
4 color: light-dark(#000, #fff);
5}
6
7button {
8 padding: 1em;
9}
10
11.settings {
12 display: flex;
13 align-items: flex-start;
14 flex-wrap: wrap;
15 gap: 2em;
16 margin: 1em;
17}
18.settings > * {
19 display: flex;
20 flex-direction: column;
21}
22
23.settings .network {
24 display: flex;
25}
26
27.settings p {
28 max-width: 10em;
29}
30
31.log {
32 font-weight: bold;
33}