-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
84 lines (71 loc) · 1.33 KB
/
styles.css
File metadata and controls
84 lines (71 loc) · 1.33 KB
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
body {
font-family: "Space Mono", monospace;
font-weight: 400;
font-style: normal;
font-size: 28px;
background-color: #F7F6F2;
}
button {
padding: 30px 10px;
min-width: 250px;
font-family: "Space Mono", monospace;
font-weight: 400;
font-style: normal;
font-size: 40px;
border: 3px solid #000;
}
button:hover {
cursor: pointer;
}
button#start {
background-color: #00501f;
color: #00ef83;
border-color: #00ef83;
}
button#stop {
background-color: #9f0049;
color: #ff7d80;
border-color: #ff7d80;
}
.viam-logo {
background-image: url(/assets/powered-by-viam.png);
background-repeat: no-repeat;
width: 50%;
height: 50px;
background-size: contain;
background-position: center;
margin: auto;
margin-top: 50px;
}
.detection-label {
font-weight: 700;
}
.flex-row-center {
display: flex;
flex-direction: row;
align-content: center;
justify-content: space-evenly
}
.flex-column-center {
display: flex;
flex-direction: column;
align-content: center;
max-width: min-content;
}
.flex-column-center > p {
font-size: 20px;
}
div #detectionsView {
height: 480px;
width: 640px;
}
div #itemInfo {
width: 600px;
}
.pad-top {
margin-top: 50px;
}
.centered {
text-align: center;
align-self: center;
}