-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
90 lines (77 loc) · 1.44 KB
/
style.css
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
body {
font-family: 'Roboto', Arial, sans-serif;
background-color: #1a1a2e;
color: #e0e0e0;
margin: 0;
padding: 0;
}
.sticky-header {
top: 0;
background-color: #212946;
padding: 10px 30px; /* Reduced padding */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
z-index: 10;
text-align: center;
}
.sticky-header h1 {
font-size: 1.8rem;
margin: 5px 0; /* Reduced margin */
color: #21e6c1;
}
.sticky-header p {
font-size: 1rem;
margin: 5px 0; /* Reduced margin */
}
.sticky-header .input-field {
width: 80%;
padding: 12px;
border: 2px solid #21e6c1;
border-radius: 6px;
background: #12192c;
color: #e0e0e0;
font-size: 1rem;
}
.container {
margin: 20px auto;
padding: 0 10px;
max-width: 900px;
text-align: center;
}
#table-container {
margin-top: 20px;
overflow-x: auto;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 10px;
background: #12192c;
}
thead {
background: #1f2a44;
}
thead th {
padding: 10px;
text-align: center;
color: #21e6c1;
}
tbody td {
padding: 10px;
text-align: center;
border: 1px solid #2e3b55;
}
tbody tr:nth-child(even) {
background: #1b2138;
}
#chart-container {
margin-top: 30px;
background: #12192c;
padding: 20px;
border-radius: 12px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
canvas {
margin-top: 20px;
max-width: 100%;
height: auto;
}