-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
154 lines (154 loc) · 3.41 KB
/
styles.css
File metadata and controls
154 lines (154 loc) · 3.41 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
:root{
--bg:#0f1724;
--card:#0b1320;
--muted:#9aa4b2;
--accent:#3b82f6;
--glass: rgba(255,255,255,0.03);
}
*{box-sizing:border-box}
html,body,#root{height:100%}
body {
background: #181a20;
color: #e2e8f0;
font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
max-width: 900px;
margin: 2rem auto;
padding: 2rem;
background: #222;
border-radius: 8px;
box-shadow: 0 2px 8px #0006;
}
h1 {
text-align: center;
margin-bottom: 2rem;
}
input[type="file"] {
display: block;
margin: 1.5rem auto 2rem auto;
background: #23272e;
color: #e2e8f0;
border: 1px solid #374151;
border-radius: 6px;
padding: 0.7em 1.2em;
font-size: 1rem;
cursor: pointer;
transition: border 0.2s;
}
input[type="file"]:hover {
border: 1.5px solid #3b82f6;
}
#controls {
display: flex;
gap: 1rem;
justify-content: center;
margin-bottom: 2rem;
}
#charts {
display: flex;
flex-wrap: wrap;
gap: 2.5rem;
justify-content: center;
margin: 2.5rem auto 1.5rem auto;
max-width: 1200px;
}
canvas {
background: #23272e;
border-radius: 10px;
padding: 1.2rem;
max-width: 340px;
box-shadow: 0 2px 12px #0002;
}
#tables {
margin-top: 2.5rem;
max-width: 900px;
margin-left: auto;
margin-right: auto;
}
table {
width: 100%;
border-collapse: collapse;
margin-bottom: 2.5rem;
background: #23272e;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 2px 12px #0002;
}
th, td {
padding: 0.7rem 1.2rem;
border-bottom: 1px solid #374151;
}
th {
background: #1e293b;
color: #a5b4fc;
font-weight: 600;
font-size: 1.05rem;
}
tr:nth-child(even) {
background: #20232a;
}
tr:nth-child(odd) {
background: #23272e;
}
header{display:flex;flex-direction:column;gap:6px;margin-bottom:18px}
.muted{color:var(--muted)}
.small{font-size:12px}
.controls{display:flex;gap:12px;align-items:center}
.file-upload{background:var(--glass);padding:10px 14px;border-radius:8px;cursor:pointer}
.file-upload input{display:none}
.filters{margin-left:auto}
.hidden{display:none}
.chart-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.card{background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));padding:12px;border-radius:10px}
.tables{display:flex;gap:14px;margin-top:14px}
thead{color:var(--muted);font-size:13px}
td,th{padding:8px;border-bottom:1px solid rgba(255,255,255,0.03)}
.upload-instructions {
max-width: 600px;
margin: 2rem auto 1rem auto;
padding: 1.5rem 2.5rem;
background: linear-gradient(135deg, #23272e 80%, #2d3748 100%);
border-radius: 14px;
color: #e2e8f0;
box-shadow: 0 4px 24px #0002;
font-size: 1.08rem;
}
.upload-instructions ul {
margin: 0.5em 0 0 1.2em;
padding: 0;
}
.upload-instructions li {
margin-bottom: 0.4em;
}
#filters {
display: flex;
gap: 1.5rem;
align-items: center;
justify-content: center;
margin-top: 1.5rem;
flex-wrap: wrap;
}
button {
background: linear-gradient(90deg, #3b82f6 60%, #06b6d4 100%);
color: #fff;
border: none;
border-radius: 6px;
padding: 0.6em 1.3em;
font-size: 1rem;
font-weight: 500;
cursor: pointer;
box-shadow: 0 2px 8px #0001;
transition: background 0.2s, box-shadow 0.2s;
}
button:hover {
background: linear-gradient(90deg, #2563eb 60%, #0ea5e9 100%);
box-shadow: 0 4px 16px #3b82f633;
}
@media (max-width: 900px) {
#charts { flex-direction: column; align-items: center; }
.upload-instructions { padding: 1rem 0.5rem; }
#tables { padding: 0 0.5rem; }
}