-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.css
More file actions
145 lines (123 loc) · 2.13 KB
/
Copy pathoptions.css
File metadata and controls
145 lines (123 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
:root {
color-scheme: light dark;
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
body {
margin: 0;
background: #f5f3ff;
color: #1f1636;
}
.page {
max-width: 880px;
margin: 0 auto;
padding: 32px 20px 48px;
}
.hero {
margin-bottom: 24px;
}
.brand {
display: flex;
align-items: center;
gap: 16px;
}
.brand__icon {
width: 56px;
height: 56px;
}
.eyebrow {
margin: 0 0 4px;
font-size: 12px;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #7c3aed;
}
h1 {
margin: 0;
font-size: 32px;
}
.hero__text {
margin: 12px 0 0;
max-width: 680px;
line-height: 1.6;
}
.card {
background: rgba(255, 255, 255, 0.86);
border: 1px solid rgba(124, 58, 237, 0.12);
border-radius: 20px;
padding: 24px;
box-shadow: 0 16px 40px rgba(76, 29, 149, 0.08);
}
.field {
display: block;
margin-bottom: 20px;
}
.field span {
display: block;
margin-bottom: 8px;
font-weight: 600;
}
.field textarea {
width: 100%;
box-sizing: border-box;
border-radius: 14px;
border: 1px solid rgba(124, 58, 237, 0.25);
padding: 12px 14px;
font: inherit;
resize: vertical;
background: #fff;
color: #1f1636;
}
.field small {
display: block;
margin-top: 8px;
color: #5b4b7f;
}
.actions {
display: flex;
align-items: center;
gap: 12px;
flex-wrap: wrap;
}
.button {
border: 1px solid rgba(124, 58, 237, 0.18);
border-radius: 999px;
padding: 10px 16px;
font: inherit;
cursor: pointer;
background: #fff;
color: #1f1636;
}
.button--primary {
background: linear-gradient(135deg, #a855f7, #6d28d9);
border-color: transparent;
color: #fff;
}
.status {
min-height: 20px;
color: #5b21b6;
font-weight: 500;
}
@media (prefers-color-scheme: dark) {
body {
background: #140b26;
color: #f3edff;
}
.card {
background: rgba(27, 18, 49, 0.92);
border-color: rgba(192, 132, 252, 0.18);
box-shadow: none;
}
.field textarea,
.button {
background: #211339;
color: #f3edff;
border-color: rgba(192, 132, 252, 0.2);
}
.field small,
.hero__text {
color: #cab9f8;
}
.status {
color: #d8b4fe;
}
}