-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
71 lines (61 loc) · 973 Bytes
/
styles.css
File metadata and controls
71 lines (61 loc) · 973 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
.container {
min-height: 100vh;
background: #f8f9fa;
}
.header {
background: #343a40;
color: white;
padding: 20px;
text-align: center;
}
.content {
padding: 20px;
font-family: Arial, sans-serif;
}
.loading {
padding: 20px;
text-align: center;
}
.device-info {
background: #f5f5f5;
padding: 15px;
border-radius: 8px;
margin-bottom: 20px;
}
.no-device {
background: #fff3cd;
padding: 15px;
border-radius: 8px;
margin-bottom: 20px;
}
.device-details {
margin-top: 10px;
}
.device-json {
background: #fff;
padding: 10px;
border-radius: 4px;
font-size: 12px;
overflow: auto;
}
.button-group {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.button-primary {
padding: 10px 15px;
background: #007bff;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
.button-success {
padding: 10px 15px;
background: #28a745;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}