summaryrefslogtreecommitdiff
path: root/css/overlay.css
diff options
context:
space:
mode:
Diffstat (limited to 'css/overlay.css')
-rw-r--r--css/overlay.css28
1 files changed, 28 insertions, 0 deletions
diff --git a/css/overlay.css b/css/overlay.css
new file mode 100644
index 0000000..b406f71
--- /dev/null
+++ b/css/overlay.css
@@ -0,0 +1,28 @@
+#overlay{
+ position:absolute;
+ height:100%;
+ width:100%;
+ top:0;
+ left:0;
+ background: rgba(245,245,245,0.8);
+ z-index: 100;
+
+}
+#overlay > .close{
+ position: absolute;
+ padding: 10px;
+ top: 10px;
+ left: 10px;
+ border: 1px solid gray;
+ background: white;
+ cursor: pointer;
+}
+#overlay > .content{
+ top: 10px;
+ left: 150px;
+ padding: 10px;
+ border: 1px solid gray;
+ background: white;
+ position: absolute;
+
+}