Kanboard-Prod/doc/en_US/custom-css.markdown

30 lines
638 B
Markdown

Custom CSS
==========
Go to Settings > Application settings > Custom Stylesheet
Example to change color of category labels
------------------------------------------
For the category container:
```css
.task-board-category-container-color span {
border: solid 0.5px grey;
color: black;
}
```
Custom css values for one category - this is an example for displaying the text:
```css
[class*="category-Patchkanditat"] {
background-color: rgba(255, 0, 0, 0.50);
border: none!important;
font-weight: bold;
font-style: italic;
box-shadow: 0 1px 1px rgba(186, 186, 186, 0.55);
color: white!important;
font-size:11px;
}
```