51 lines
644 B
CSS
Raw Normal View History

2012-02-24 11:26:31 +05:30
.todoitem {
2012-06-12 19:24:12 +05:30
padding-bottom: 3px;
2012-03-14 19:06:20 +05:30
clear: both;
2012-02-24 11:26:31 +05:30
}
2012-10-09 11:05:25 +05:30
.todoitem div {
float: left;
display: inline-block;
padding: 3px;
}
2012-02-24 11:26:31 +05:30
.todoitem .label {
width: 50px;
2012-06-12 19:24:12 +05:30
margin-right: 11px;
margin-top: 3px;
2012-10-09 11:05:25 +05:30
text-align: center;
}
.todoitem .todo-date {
margin-top: -2px;
margin-right: 7px;
color: #aaa;
2012-02-24 11:26:31 +05:30
}
.todoitem .close {
2012-06-13 12:01:41 +05:30
margin-left: 5px;
2012-06-12 19:24:12 +05:30
font-size: 17px;
2012-02-24 11:26:31 +05:30
}
2012-06-12 19:24:12 +05:30
.todoitem .close-span {
float: right;
}
.todo-separator {
border-bottom: 1px solid #DEB85F;
margin-bottom: 5px;
clear: both;
}
.todo-content {
padding-right: 15px;
2012-07-09 12:34:02 +05:30
}
.todo-layout {
2012-07-09 12:34:02 +05:30
background-color: #FFFDC9;
min-height: 300px;
}
2012-10-09 11:05:25 +05:30
.todoitem .popup-on-click {
margin: 0px 6px;
2012-06-12 19:24:12 +05:30
}