diff test_create/style.css @ 1099:0a15fa67bda1

First draft of AES poster
author Dave <djmoffat@users.noreply.github.com>
date Tue, 23 Feb 2016 15:19:31 +0000
parents
children 3de455e48d70 b5bf2f57187c a4ad9e55b5b8
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test_create/style.css	Tue Feb 23 15:19:31 2016 +0000
@@ -0,0 +1,111 @@
+div#blanket {
+    z-index: 2;
+    background-color: rgba(0,0,0,0.5);
+    width: 100%;
+    height: 100%;
+    position: fixed;
+    left: 0px;
+    top: 0px;
+}
+
+div#popupHolder {
+    z-index: 3;
+    background-color: rgba(255,255,255,1);
+    width: 730px;
+    height: 480px;
+    position: fixed;
+    border-radius: 10px;
+	box-shadow: 0px 0px 50px #000;
+    padding: 10px;
+}
+
+div#popup-title-holder {
+    width: 100%;
+    height: 50px;
+    font-size: 2em;
+}
+
+button#popup-proceed {
+    width: 60px;
+    height: 27px;
+    padding: 5px;
+    position: absolute;
+    right: 10px;
+    bottom: 10px;
+}
+
+div.drag-area {
+    border: 3px black dashed;
+}
+div.drag-over {
+    background-color: aquamarine;
+}
+div.drag-dropped {
+    background-color: aqua;
+}
+div.drag-error {
+    background-color: coral
+}
+
+div#project-drop {
+    width: 99%;
+    height: 50px;
+    margin: 10px 0px;
+}
+
+div.popup-checkbox {
+    padding: 5px;
+}
+
+div.popup-checkbox input {
+    margin: 0px 5px;
+}
+
+div.popup-option-entry {
+    padding: 5px 0px;
+    border-bottom: 1px solid;
+}
+
+div.disabled{
+    color: rgb(100,100,100);
+}
+
+div.node {
+    float: left;
+    padding: 10px;
+    border: black 2px solid;
+    border-radius: 10px;
+    margin: 10px;
+    min-width: 92%;
+    background-color: rgba(255,255,255,0.5);
+}
+div.node-title {
+    float: left;
+    width: 100%;
+    font-size: 2em;
+    margin: 5px 0px;
+}
+div.node-attributes {
+    min-width: 92%;
+    float: left;
+    padding: 10px;
+}
+div.attribute {
+    float: left;
+    margin-right: 10px;
+}
+div.node-children {
+    float: left;
+    min-width: 92%;
+}
+div.node-buttons {
+    float: left;
+    min-width: 92%;
+}
+div.attribute input {
+    max-width: 100px;
+    margin-right: 10px;
+}
+div.attribute input[type=number] {
+    width: 80px;
+}
\ No newline at end of file