aboutsummaryrefslogtreecommitdiff
path: root/static/wire.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/wire.css')
-rw-r--r--static/wire.css44
1 files changed, 44 insertions, 0 deletions
diff --git a/static/wire.css b/static/wire.css
new file mode 100644
index 0000000..e7751fa
--- /dev/null
+++ b/static/wire.css
@@ -0,0 +1,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;
+}