-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
53 lines (43 loc) · 655 Bytes
/
Copy pathstyles.css
File metadata and controls
53 lines (43 loc) · 655 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #1f1f1f;
color: #ffffff;
}
.container {
margin: 20px auto;
text-align: center;
}
h1 {
margin-bottom: 20px;
}
.plots {
display: flex;
justify-content: space-between;
}
.plot-container {
width: 45%;
padding: 2.5%;
height: 70vh;
}
.device-status {
padding: 1%;
font-size: 1.5rem;
}
.device-stage{
font-size: 1.4rem;
}
.device-status:nth-child(even) {
margin-left: auto;
}
@media screen and (max-width: 768px) {
.plots {
flex-direction: column;
gap: 10vh;
}
.plot-container {
width: 100%;
height: 50vh;
}
}