Created
August 30, 2011 16:21
-
-
Save winhamwr/1181282 to your computer and use it in GitHub Desktop.
CSS style override for a large-screen kanbantool.com board
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** 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