aboutsummaryrefslogtreecommitdiff
path: root/static/wire.css
blob: e7751fa32210453fdfb4c6c1ddcd5fddec823896 (plain)
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
#image {
  display: block;
  margin: 0px;
  max-width: 100%;
  padding: 0px;
  position: relative;
}

#image>img {
  position: absolute;
  display: none;
  max-width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

#main {
  padding: 3em;
}

.item {
  border: 3px dashed yellow;
  display: inline-block;
  margin: 0;
  padding: 0;
  position:absolute;
  z-index: 2;
}

.itemLabel {
  background-color: yellow;
  color: black;
  display: inline-block;
  font-weight: bold;
  margin: 0;
  opacity: 0.5;
  padding: 0.1em;
  position:absolute;
  z-index: 3;
}
.item:hover {
  border: 5px solid yellow;
}