styles.css css
112 lines 1.6 KB
Raw
sha256:a78e7e5a8740e03315f325d19edeb3aa1b306b3337d04abbaa9a9e0f3bbeb7a1 docs: MuseHub-first before ISR #74 — staging solidify NEXT Human 2 days ago
1 .logo.vanilla:hover {
2 filter: drop-shadow(0 0 2em #ffe21c);
3 }
4 :root {
5 font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
6 font-size: 16px;
7 line-height: 24px;
8 font-weight: 400;
9
10 color: #0f0f0f;
11 background-color: #f6f6f6;
12
13 font-synthesis: none;
14 text-rendering: optimizeLegibility;
15 -webkit-font-smoothing: antialiased;
16 -moz-osx-font-smoothing: grayscale;
17 -webkit-text-size-adjust: 100%;
18 }
19
20 .container {
21 margin: 0;
22 padding-top: 10vh;
23 display: flex;
24 flex-direction: column;
25 justify-content: center;
26 text-align: center;
27 }
28
29 .logo {
30 height: 6em;
31 padding: 1.5em;
32 will-change: filter;
33 transition: 0.75s;
34 }
35
36 .logo.tauri:hover {
37 filter: drop-shadow(0 0 2em #24c8db);
38 }
39
40 .row {
41 display: flex;
42 justify-content: center;
43 }
44
45 a {
46 font-weight: 500;
47 color: #646cff;
48 text-decoration: inherit;
49 }
50
51 a:hover {
52 color: #535bf2;
53 }
54
55 h1 {
56 text-align: center;
57 }
58
59 input,
60 button {
61 border-radius: 8px;
62 border: 1px solid transparent;
63 padding: 0.6em 1.2em;
64 font-size: 1em;
65 font-weight: 500;
66 font-family: inherit;
67 color: #0f0f0f;
68 background-color: #ffffff;
69 transition: border-color 0.25s;
70 box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
71 }
72
73 button {
74 cursor: pointer;
75 }
76
77 button:hover {
78 border-color: #396cd8;
79 }
80 button:active {
81 border-color: #396cd8;
82 background-color: #e8e8e8;
83 }
84
85 input,
86 button {
87 outline: none;
88 }
89
90 #greet-input {
91 margin-right: 5px;
92 }
93
94 @media (prefers-color-scheme: dark) {
95 :root {
96 color: #f6f6f6;
97 background-color: #2f2f2f;
98 }
99
100 a:hover {
101 color: #24c8db;
102 }
103
104 input,
105 button {
106 color: #ffffff;
107 background-color: #0f0f0f98;
108 }
109 button:active {
110 background-color: #0f0f0f69;
111 }
112 }
File History 1 commit
sha256:a78e7e5a8740e03315f325d19edeb3aa1b306b3337d04abbaa9a9e0f3bbeb7a1 docs: MuseHub-first before ISR #74 — staging solidify NEXT Human 2 days ago