-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgyroStyle.css
63 lines (55 loc) · 950 Bytes
/
gyroStyle.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
body, html {
padding: 0;
margin: 0;
}
html {
width: 100%;
height: 100%;
}
body {
width: 100%;
height: 100%;
background-image: url("static/background.jpg");
}
#content-div {
height: 100%;
width: 60%;
margin: 0 auto;
background-color: rgb(0,0,0,0.4);
color: white;
font-family: "Roboto";
border-radius: 5%;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
.d, .observation-info, .orientation_sensors, .found-banner {
max-width: 80%;
display: block;
margin: 0 auto;
align-content: center ;
flex: 1 1 100%;
font-family: "Roboto";
font-weight: 600;
font-size: 20;
}
#qrcode {
width:100px;
height:auto;
margin: 0 auto;
display: flex;
justify-content: center;
}
#qrcode > canvas {
display: block;
margin: 0 auto;
}
#qrcode > img {
min-width: 200px;
min-height: 200px;
display: block;
margin: 0 auto;
background-color: grey;
padding: 2em;
}