-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
230 lines (211 loc) · 5.7 KB
/
index.css
File metadata and controls
230 lines (211 loc) · 5.7 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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
@import "tailwindcss";
@import "tw-animate-css";
@custom-variant dark (&:is(.dark *));
@theme inline {
--radius-sm: calc(var(--radius) - 4px);
--radius-md: calc(var(--radius) - 2px);
--radius-lg: var(--radius);
--radius-xl: calc(var(--radius) + 4px);
--color-background: var(--background);
--color-foreground: var(--foreground);
--color-card: var(--card);
--color-card-foreground: var(--card-foreground);
--color-popover: var(--popover);
--color-popover-foreground: var(--popover-foreground);
--color-primary: var(--primary);
--color-primary-foreground: var(--primary-foreground);
--color-secondary: var(--secondary);
--color-secondary-foreground: var(--secondary-foreground);
--color-muted: var(--muted);
--color-muted-foreground: var(--muted-foreground);
--color-accent: var(--accent);
--color-accent-foreground: var(--accent-foreground);
--color-destructive: var(--destructive);
--color-destructive-foreground: var(--destructive-foreground);
--color-border: var(--border);
--color-input: var(--input);
--color-ring: var(--ring);
--color-chart-1: var(--chart-1);
--color-chart-2: var(--chart-2);
--color-chart-3: var(--chart-3);
--color-chart-4: var(--chart-4);
--color-chart-5: var(--chart-5);
--color-sidebar: var(--sidebar);
--color-sidebar-foreground: var(--sidebar-foreground);
--color-sidebar-primary: var(--sidebar-primary);
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
--color-sidebar-accent: var(--sidebar-accent);
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
--color-sidebar-border: var(--sidebar-border);
--color-sidebar-ring: var(--sidebar-ring);
}
:root {
/* ProofMark Design: Cyber-Minimalist Security */
--primary: #6c3ef4;
/* 紫 - 創造性とテクノロジーの融合 */
--primary-foreground: #f0f0fa;
/* 明るいグレー */
--accent: #00d4aa;
/* シアン - セキュリティ・保護 */
--accent-foreground: #0a0e27;
/* 深い紺 */
--gold: #ffd966;
/* ゴールド - 希少性・価値 */
--destructive: #e74c3c;
/* 赤 - エラー・警告 */
--destructive-foreground: #f0f0fa;
--radius: 0.65rem;
--background: #0a0e27;
/* 深い紺 - 信頼感と集中力 */
--foreground: #f0f0fa;
/* 明るいグレー - 読みやすさ */
--card: #151d2f;
/* カード背景 */
--card-foreground: #f0f0fa;
--popover: #151d2f;
--popover-foreground: #f0f0fa;
--secondary: #0f1629;
/* サーフェス層 */
--secondary-foreground: #a0a0c0;
/* 薄いグレー */
--muted: #a0a0c0;
/* 薄いグレー */
--muted-foreground: #6b7280;
/* より薄いグレー */
--border: #2a2a4e;
/* ボーダー色 */
--input: #151d2f;
/* 入力フィールド背景 */
--ring: #6c3ef4;
/* フォーカスリング */
--sidebar: #0a0e27;
--sidebar-foreground: #f0f0fa;
--sidebar-accent: #6c3ef4;
--sidebar-accent-foreground: #f0f0fa;
--sidebar-border: #2a2a4e;
--sidebar-ring: #6c3ef4;
}
.dark {
/* ProofMark Dark Mode (already dark by default) */
--primary: #6c3ef4;
--primary-foreground: #f0f0fa;
--accent: #00d4aa;
--accent-foreground: #0a0e27;
--background: #0a0e27;
--foreground: #f0f0fa;
--card: #151d2f;
--card-foreground: #f0f0fa;
--popover: #151d2f;
--popover-foreground: #f0f0fa;
--secondary: #0f1629;
--secondary-foreground: #a0a0c0;
--muted: #a0a0c0;
--muted-foreground: #6b7280;
--border: #2a2a4e;
--input: #151d2f;
--ring: #6c3ef4;
--destructive: #e74c3c;
--destructive-foreground: #f0f0fa;
--sidebar: #0a0e27;
--sidebar-foreground: #f0f0fa;
--sidebar-accent: #6c3ef4;
--sidebar-accent-foreground: #f0f0fa;
--sidebar-border: #2a2a4e;
--sidebar-ring: #6c3ef4;
}
@layer base {
* {
@apply border-border outline-ring/50;
}
body {
@apply bg-background text-foreground;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
font-weight: 800;
letter-spacing: -0.02em;
}
h1 {
font-size: 56px;
font-weight: 900;
line-height: 1.1;
}
h2 {
font-size: 36px;
font-weight: 800;
line-height: 1.2;
}
h3 {
font-size: 24px;
font-weight: 700;
line-height: 1.3;
}
button:not(:disabled),
[role="button"]:not([aria-disabled="true"]),
[type="button"]:not(:disabled),
[type="submit"]:not(:disabled),
[type="reset"]:not(:disabled),
a[href],
select:not(:disabled),
input[type="checkbox"]:not(:disabled),
input[type="radio"]:not(:disabled) {
@apply cursor-pointer;
}
@media (max-width: 680px) {
h1 {
font-size: 40px;
}
h2 {
font-size: 28px;
}
}
}
@layer components {
/**
* Custom container utility that centers content and adds responsive padding.
*
* This overrides Tailwind's default container behavior to:
* - Auto-center content (mx-auto)
* - Add responsive horizontal padding
* - Set max-width for large screens
*
* Usage: <div className="container">...</div>
*
* For custom widths, use max-w-* utilities directly:
* <div className="max-w-6xl mx-auto px-4">...</div>
*/
.container {
width: 100%;
margin-left: auto;
margin-right: auto;
padding-left: 1rem;
/* 16px - mobile padding */
padding-right: 1rem;
}
.flex {
min-height: 0;
min-width: 0;
}
@media (min-width: 640px) {
.container {
padding-left: 1.5rem;
/* 24px - tablet padding */
padding-right: 1.5rem;
}
}
@media (min-width: 1024px) {
.container {
padding-left: 2rem;
/* 32px - desktop padding */
padding-right: 2rem;
max-width: 1280px;
/* Standard content width */
}
}
}