-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
57 lines (49 loc) · 976 Bytes
/
styles.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
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background-color: #0c0c0c;
color: #fff;
}
header {
background-color: #001f3f;
padding: 1rem;
text-align: center;
border-bottom: 3px solid #0074D9;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
header h1 {
font-size: 2.5rem;
margin: 0;
}
main {
padding: 2rem;
}
form {
margin-bottom: 1rem;
text-align: center;
}
#csvFile {
display: none;
}
#csvFileLabel {
display: inline-block;
padding: 1rem 2rem;
background-color: #0074D9;
color: #fff;
font-size: 1.1rem;
cursor: pointer;
border-radius: 5px;
transition: background-color 0.3s ease;
}
#csvFileLabel:hover {
background-color: #0056b3;
}
#grafanaContainer {
border: 1px solid #0074D9;
border-radius: 10px;
min-height: 300px;
background-color: #001f3f;
padding: 1rem;
box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}