Skip to content

Instantly share code, notes, and snippets.

@partikus
Created May 13, 2017 08:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save partikus/a4ab4c669750fbcbaf5e1cf6a48a6d4b to your computer and use it in GitHub Desktop.
Save partikus/a4ab4c669750fbcbaf5e1cf6a48a6d4b to your computer and use it in GitHub Desktop.
kanboard styles
header {
background-color: rgb(0, 153, 76);
padding: 10px 10px 15px 10px;
margin-left: 0px;
margin-right: 0px;
margin-top: 0px;
}
h1 {
font-weight: normal;
color: #FFFFFF;
}
body {
margin-left: 0px;
margin-right: 0px;
margin-top: 0px;
padding-bottom: 0px;
padding-top: 0px;
color: #333;
font-family: "Open Sans","Helvetica",Arial,sans-serif;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
}
.page {
margin-left: 20px;
margin-right: 20px;
clear: both;
}
.ui-sortable {
background-color: rgb(236, 236, 236);
padding: 3px 3px 0px 0px;
}
/* unvisited link */
a:link {
color: rgb(0, 0, 0);
}
/* visited link */
a:visited {
color: rgb(0, 0, 0);
}
/* mouse over link */
a:hover {
color: rgb(128, 128, 128);
}
/* selected link */
a:active {
color: rgb(128, 128, 128);
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
td.color-white, div.color-white {
border-color: rgb(255, 255, 255);
border-left-width: 15px;
background-color: white;
}
td.color-yellow, div.color-yellow {
border-color: rgb(223, 227, 45);
border-left-width: 15px;
background-color: white;
}
td.color-blue, div.color-blue {
border-color: rgb(10, 76, 153);
border-left-width: 15px;
background-color: white;
}
td.color-green, div.color-green {
border-color: rgb(0, 153, 76);
border-left-width: 15px;
background-color: white;
}
td.color-purple, div.color-purple {
border-color: rgb(51, 0, 102);
border-left-width: 15px;
background-color: white;
}
td.color-red, div.color-red {
border-color: rgb(153, 0, 0);
border-left-width: 15px;
background-color: white;
}
td.color-orange, div.color-orange {
border-color: rgb(204, 102, 0);
border-left-width: 15px;
background-color: white;
}
td.color-grey, div.color-grey {
border-color: rgb(204, 204, 204);
border-left-width: 15px;
background-color: white;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment