-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
37 lines (34 loc) · 986 Bytes
/
styles.css
File metadata and controls
37 lines (34 loc) · 986 Bytes
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
body { font-family: Arial, sans-serif; background-color: #121212; color: #fff; margin: 0; padding: 20px; }
h1 { text-align: center; }
.dashboard-flex {
display: flex;
gap: 32px;
align-items: flex-start;
}
table {
width: 50%; /* Halve table width */
border-collapse: collapse;
margin-top: 20px;
font-size: 0.75em; /* Halve font size */
max-width: 400px;
min-width: 180px;
}
th, td {
padding: 5px; /* Halve cell padding */
border: 1px solid #444;
text-align: left;
}
.chart-container {
width: 400px;
min-width: 240px;
height: 320px;
background: #1a1a1a;
border-radius: 8px;
padding: 16px;
box-sizing: border-box;
display: flex;
align-items: center;
}
input, select, button { margin: 5px; padding: 5px; background: #333; color: #fff; border: 1px solid #555; border-radius: 4px; }
button:hover { background-color: #444; }
.controls { display: flex; flex-wrap: wrap; justify-content: space-between; margin-bottom: 10px; }