aboutsummaryrefslogtreecommitdiff
path: root/static/wire.css
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2016-12-29 15:20:15 +0300
committerIgor Pashev <pashev.igor@gmail.com>2017-04-20 15:32:44 +0300
commit598a03684324eeac37e51f7606f8a27e1e9603e6 (patch)
tree0ff64573ab6fd9149cc45a928781146a4e1e359b /static/wire.css
downloadire-598a03684324eeac37e51f7606f8a27e1e9603e6.tar.gz
Initial release0.0.0
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;
+}