GodsDevProject commited on
Commit
a02246c
·
verified ·
1 Parent(s): 6dcbaae

Create static/style.css

Browse files
Files changed (1) hide show
  1. static/style.css +50 -0
static/style.css ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ background: #0b0f17;
3
+ color: #e5e7eb;
4
+ font-family: Inter, system-ui, sans-serif;
5
+ }
6
+
7
+ #card {
8
+ background: linear-gradient(180deg, #121826, #0f172a);
9
+ border-radius: 16px;
10
+ padding: 20px;
11
+ border: 1px solid #1e293b;
12
+ }
13
+
14
+ #agency-pills label {
15
+ background: #020617;
16
+ border-radius: 999px;
17
+ padding: 6px 14px;
18
+ margin: 4px;
19
+ border: 1px solid #1e293b;
20
+ }
21
+
22
+ #agency-pills input:checked + label {
23
+ background: #2563eb;
24
+ color: white;
25
+ }
26
+
27
+ #results-table {
28
+ background: #020617;
29
+ border-radius: 12px;
30
+ border: 1px solid #1e293b;
31
+ }
32
+
33
+ #search-btn {
34
+ background: #374151;
35
+ height: 48px;
36
+ font-size: 16px;
37
+ border-radius: 12px;
38
+ }
39
+
40
+ #search-btn:hover {
41
+ background: #4b5563;
42
+ }
43
+
44
+ #provenance {
45
+ margin-top: 24px;
46
+ padding: 16px;
47
+ background: #020617;
48
+ border-radius: 12px;
49
+ border: 1px solid #1e293b;
50
+ }