jzou19950715 commited on
Commit
094ec9c
·
verified ·
1 Parent(s): 1b8822c

Create static/styles.css */

Browse files
Files changed (1) hide show
  1. static/styles.css * +53 -0
static/styles.css * ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* static/styles.css */
2
+
3
+ .visualization-container {
4
+ margin: 20px 0;
5
+ padding: 15px;
6
+ border: 1px solid #ddd;
7
+ border-radius: 8px;
8
+ background: white;
9
+ }
10
+
11
+ .visualization {
12
+ width: 100%;
13
+ height: 400px;
14
+ margin: 10px 0;
15
+ }
16
+
17
+ .tooltip {
18
+ position: absolute;
19
+ text-align: center;
20
+ padding: 8px;
21
+ font: 12px sans-serif;
22
+ background: rgba(255, 255, 255, 0.9);
23
+ border: 1px solid #ddd;
24
+ border-radius: 4px;
25
+ pointer-events: none;
26
+ box-shadow: 0 2px 4px rgba(0,0,0,0.1);
27
+ }
28
+
29
+ .axis text {
30
+ font-size: 12px;
31
+ }
32
+
33
+ .axis line {
34
+ stroke: #ddd;
35
+ }
36
+
37
+ .axis path {
38
+ stroke: #ddd;
39
+ }
40
+
41
+ .bar:hover {
42
+ fill-opacity: 0.8;
43
+ transition: fill-opacity 0.2s;
44
+ }
45
+
46
+ .line {
47
+ fill: none;
48
+ stroke-width: 2px;
49
+ }
50
+
51
+ .confidence-area {
52
+ fill-opacity: 0.2;
53
+ }