-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
191 lines (161 loc) · 4.36 KB
/
Copy pathstyles.css
File metadata and controls
191 lines (161 loc) · 4.36 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
:root {
--bg: #0d0f14;
--card: #141720;
--panel: #191c27;
--text: #e8ebf2;
--muted: #9ba3b7;
--accent: #3effb0;
--border: #2a3040;
--badge: #22283a;
--shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
font-family: "JetBrains Mono", "IBM Plex Mono", "SFMono-Regular", ui-monospace, Menlo,
monospace;
color: var(--text);
background: var(--bg);
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--text); }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.hero {
padding: 72px 24px 48px;
border-bottom: 3px solid var(--accent);
text-align: left;
color: #f5f7fb;
text-shadow: 0 0 30px #05070c;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 28px;
align-items: center;
width: min(1180px, 100%);
margin: 0 auto;
}
.hero__visual {
height: 380px;
border-radius: 18px;
border: 2px solid var(--accent);
background: url('https://ipfs.io/ipfs/QmZMhMzBL2g1StZ2PdP1SnmSVbN4yBkgmgzedjw7MeNMSL')
center/cover no-repeat;
box-shadow: 0 0 0 2px #05070c, 0 32px 60px rgba(0, 0, 0, 0.45);
}
.hero__content { max-width: 540px; }
h1 {
font-size: 48px;
margin: 0 0 12px;
letter-spacing: -0.02em;
text-transform: uppercase;
}
.lede { color: var(--muted); font-size: 20px; margin: 0; }
.lede-banner {
width: min(1100px, 100%);
padding: 12px 24px 0;
margin: 32px auto 44px;
}
.hero__cta { display: flex; gap: 12px; }
.wrapper {
width: min(1100px, 100%);
padding: 0 24px 96px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 36px;
}
.card + .card {
margin-top: 4px;
}
.card {
background: var(--card);
border: 1px solid var(--border);
border-radius: 16px;
padding: 28px;
box-shadow: var(--shadow);
}
.section__header { margin-bottom: 16px; }
.section__header p { color: var(--muted); margin: 4px 0 0; }
.grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--docs { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.panel {
background: var(--panel);
border: 1px solid var(--border);
border-radius: 12px;
padding: 18px;
}
.panel--action {
border-color: #2f8f6b;
box-shadow: 0 12px 24px rgba(141, 232, 194, 0.08);
}
.muted { color: var(--muted); }
.status { margin: 10px 0; font-weight: 600; }
.badge {
display: inline-flex;
align-items: center;
padding: 4px 10px;
border-radius: 999px;
background: var(--badge);
color: var(--text);
font-size: 12px;
border: 1px solid var(--border);
}
.badge--pending { color: #f8c77d; border-color: #f8c77d33; background: #f8c77d1a; }
.table {
display: grid;
gap: 8px;
background: var(--panel);
border: 1px solid var(--border);
border-radius: 12px;
padding: 12px;
overflow: auto;
}
.table__row {
display: grid;
grid-template-columns: 1.2fr 1fr 2fr 0.8fr;
gap: 12px;
align-items: center;
min-width: 640px;
}
.table__row--head { color: var(--muted); font-size: 14px; }
.list { padding-left: 18px; margin: 8px 0 0; color: var(--muted); }
.field { display: grid; gap: 6px; margin: 8px 0 12px; }
.field__label { color: var(--muted); font-size: 14px; }
input[type="number"] {
width: 100%;
padding: 10px 12px;
border-radius: 10px;
border: 1px solid var(--border);
background: #0f1118;
color: var(--text);
}
.button {
display: inline-flex;
justify-content: center;
align-items: center;
gap: 8px;
padding: 12px 16px;
border-radius: 12px;
border: 2px solid var(--accent);
background: #0a1712;
color: var(--accent);
font-weight: 800;
letter-spacing: 0.05em;
text-transform: uppercase;
cursor: not-allowed;
box-shadow: 0 0 0 2px #05070c, 0 0 24px rgba(62, 255, 176, 0.25);
}
.hint { color: var(--muted); font-size: 13px; margin: 8px 0 0; }
.note { color: var(--muted); font-size: 14px; margin: 8px 0 0; }
.footer {
border-top: 1px solid var(--border);
padding: 18px 0 32px;
margin-top: 32px;
background: #0e1014;
}
.footer__content { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.footer__links { display: flex; gap: 12px; }
@media (max-width: 720px) {
.hero { grid-template-columns: 1fr; padding: 64px 18px 40px; }
.hero__visual { height: 240px; }
h1 { font-size: 36px; }
.hero__cta { flex-direction: column; align-items: flex-start; }
.table__row { grid-template-columns: 1fr; }
.footer__content { flex-direction: column; align-items: flex-start; }
}