-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.css
71 lines (61 loc) · 1.05 KB
/
dashboard.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
@import url('https://fonts.googleapis.com/css?family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css?family=Permanent+Marker&display=swap');
html *{
font-family: 'Ubuntu';
}
.edge{
font-family: 'Permanent Marker';
}
#topbar{
position: fixed;
top: 0px;
min-width: 100%;
z-index: 1;
}
#cameraBtn{
position: fixed;
float: left;
left: 10px;
top: 12%;
}
#imageBtn{
position: fixed;
float: right;
right: 10px;
top: 12%;
}
#canvas{
padding: 10px 10px 10px 10px;
position: fixed;
margin-top: 10%;
min-width: 75%;
max-width: 75%;
left: 10px;
top: 1%;
max-height: 400px;
min-height: 400px;
}
#resultArea{
font-family: 'Ubuntu';
border: thick 2px grey;
position: fixed;
margin-top: 10%;
min-width: 20%;
max-width: 20%;
right: 10px;
top: 1%;
max-height: 400px;
min-height: 400px;
overflow: scroll;
}
#reportBtn{
position: fixed;
bottom: 10px;
left: 45%;
}
#items{
font-size: 22px;
}
#img{
height: 380px;
}