-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
73 lines (63 loc) · 1.08 KB
/
index.css
File metadata and controls
73 lines (63 loc) · 1.08 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
html,
body {
padding: 0;
margin: 0;
font: 13px/1.4 Helvetica, arial;
}
#container {
width: 192px;
height: 192px;
padding: 0;
margin: 0;
}
.config-panel {
z-index: 1;
top: 0px;
position: absolute;
width: 192px;
height: 192px;
background-color:rgb(255, 255, 255);
display: flex;
justify-content: center;
align-content: center;
align-items: center;
flex-direction: column;
}
.config-panel label {
width: 13em;
padding-bottom: 0.3em;
}
.config-panel input {
outline: 0;
}
.slide-enter {
left: -192px;
transition: .5s;
}
.slide-enter.slide-enter-active {
left: 0px;
}
.slide-leave {
left: 0px;
transition: .5s;
}
.slide-leave.slide-leave-active {
left: -192px;
}
.beacon-device {
background-image: url(components/eddystone_logo.png);
background-repeat: no-repeat;
background-size: cover;
width: 192px;
height: 192px;
display: flex;
flex-direction: row-reverse;
}
.beacon-config {
background-image: url(components/eddystone_config.png);
background-repeat: no-repeat;
background-size: cover;
width: 32px;
height: 32px;
cursor: pointer; cursor: hand;
}