summaryrefslogtreecommitdiff
path: root/ui.css
diff options
context:
space:
mode:
authorOwen <despito@MacBook-Pro-de-Despito.local>2014-07-14 19:06:42 +0300
committerOwen <despito@MacBook-Pro-de-Despito.local>2014-07-14 19:06:42 +0300
commit335af0bbf19ef4e6454233c9b4d212ee5aaa9d0d (patch)
tree7433f0c265acf863db5a6615eab6f601c94e0dad /ui.css
parent2d98eaaf727834c128fdd2513d43d677d97fe8d7 (diff)
Target and adjacent nodes are highlighted when clicked
Background click remove editing boxes and highlights Deliverables test button adds 140 random tasks and dates Links between nodes have two colors: blue and green for dependencies
Diffstat (limited to 'ui.css')
-rw-r--r--ui.css75
1 files changed, 72 insertions, 3 deletions
diff --git a/ui.css b/ui.css
index b00c26d3..ef81a0e8 100644
--- a/ui.css
+++ b/ui.css
@@ -18,6 +18,11 @@
margin: 0;
display:block;
float: left;
+ font-size: 16px;
+ padding-top:30px;
+
+ max-width: 400px;
+ line-height:1.5;
}
.ui-menu .ui-menu {
margin-top: -3px;
@@ -28,17 +33,81 @@
zoom: 1;
float: left;
clear: left;
- width: 100%;
}
.ui-menu .ui-menu-item a {
text-decoration:none;
display:block;
padding:.2em .4em;
line-height:1.5;
+
zoom:1;
}
-.ui-menu .ui-menu-item a.ui-state-hover,
+.ui-menu .ui-menu-item ,
.ui-menu .ui-menu-item a.ui-state-active {
font-weight: normal;
margin: -1px;
-} \ No newline at end of file
+}
+
+
+
+.ui-helper-hidden-accessible{
+ position:fixed;
+ top:65px;
+ left:20px;
+ text-shadow: 0px 2px 2px rgba(255, 255, 255, 0.4);
+ font-size:16px;
+}
+
+.ui-datepicker {
+ background-color: rgba(17,17,17,0.9);
+ width: 217px;
+ height: auto;
+ margin: 5px auto 0;
+ font: 9pt;
+ border: 1px solid;
+
+ -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
+ -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
+ box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
+}
+
+
+
+.ui-datepicker-title {
+ text-align: center;
+}
+
+.ui-datepicker-prev {
+ float: left;
+ background-position: center -30px;
+}
+.ui-datepicker-next {
+ float: right;
+ background-position: center 0px;
+}
+
+.ui-datepicker-header {
+ color: #e0e0e0;
+ font-weight: bold;
+ -webkit-box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, 2);
+ -moz-box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, .2);
+ box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, .2);
+ text-shadow: 1px -1px 0px #000;
+ filter: dropshadow(color=#000, offx=1, offy=-1);
+ line-height: 30px;
+ border-width: 1px 0 0 0;
+ border-style: solid;
+ border-color: #111;
+}
+
+.ui-datepicker a {
+ text-decoration: none;
+ color: #fff;
+}
+.ui-datepicker a:hover {
+ color: #E03A3E;
+}
+
+.ui-datepicker table {
+ width: 100%;
+} \ No newline at end of file