Skip to content

Instantly share code, notes, and snippets.

@winhamwr
Created August 30, 2011 16:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save winhamwr/1181282 to your computer and use it in GitHub Desktop.
Save winhamwr/1181282 to your computer and use it in GitHub Desktop.
CSS style override for a large-screen kanbantool.com board
/** https://gist.github.com/1181282 **/
ul.task_list {
height: 1024px;
}
ul.task_list li {
height: auto;
max-height: 20em;
overflow: visible;
}
ul.task_list li div.task_pane {
max-height: 19em;
overflow: visible;
}
ul.task_list li .status_pane {
top: 1px;
}
ul.task_list li span.external_id {
color: #00000F;
font-size: 4.5em;
line-height: .9em;
font-weight: bold;
}
ul.task_list li .right_pane {
top: 1px;
}
ul.task_list li .assignment_pane {
font-size: 2em;
line-height: .9em;
color: #800080;
}
ul.task_list li .task_name {
font-size: 2.1em;
font-weight: bold;
margin-top: 1.2em;
font-family: helvetica, arial, sans-serif;
line-height: 90%;
color: #1F1F1F;
}
ul.task_list li.blue {
background: #91B0F2 center;
}
ul.task_list li.green {
background: #31B639 center;
}
ul.task_list li.red {
background: #C61800 center;
}
ul.task_list li.white {
background: #C0C0C0 center;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment