blob: 9ef6886edcd190fad7d7da33e3ace6173037df3a [file] [log] [blame]
蒋大力498c1562025-06-08 13:01:39 +08001:root {
2 font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3 line-height: 1.5;
4 font-weight: 400;
5
6 color-scheme: light dark;
7 color: rgba(255, 255, 255, 0.87);
8 background-color: #242424;
9
10 font-synthesis: none;
11 text-rendering: optimizeLegibility;
12 -webkit-font-smoothing: antialiased;
13 -moz-osx-font-smoothing: grayscale;
14}
15
16a {
17 font-weight: 500;
18 color: #646cff;
19 text-decoration: inherit;
20}
21a:hover {
22 color: #535bf2;
23}
24
25body {
26 margin: 0;
27 display: flex;
28 place-items: center;
29 min-width: 320px;
30 min-height: 100vh;
31}
32
33h1 {
34 font-size: 3.2em;
35 line-height: 1.1;
36}
37
38button {
39 border-radius: 8px;
40 border: 1px solid transparent;
41 padding: 0.6em 1.2em;
42 font-size: 1em;
43 font-weight: 500;
44 font-family: inherit;
45 background-color: #1a1a1a;
46 color: white;
47 cursor: pointer;
48 transition: border-color 0.25s;
49}
50button:hover {
51 border-color: #646cff;
52}
53button:focus,
54button:focus-visible {
55 outline: 4px auto -webkit-focus-ring-color;
56}
57
58@media (prefers-color-scheme: light) {
59 :root {
60 color: #213547;
61 background-color: #ffffff;
62 }
63 a:hover {
64 color: #747bff;
65 }
66 button {
67 background-color: #f9f9f9;
68 color: #213547;
69 }
70}