Last active
January 11, 2022 14:54
-
-
Save marcelohmariano/74e17f7b60f1824dd49d704c277e5a9d to your computer and use it in GitHub Desktop.
Pro for Trello custom CSS
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
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&display=swap'); | |
#board { | |
font-family: 'Comic Neue', cursive; | |
font-weight: 700; | |
} | |
.list-card-title { | |
font-weight: 300; | |
} | |
.list-card-title::before { | |
content: '\A'; | |
display: block; | |
padding: 15px 0 0; | |
white-space: pre; | |
} | |
.list-header-name { | |
font-family: inherit; | |
font-size: 15px; | |
} | |
.tpro-project, .tpro-tag.tpro-label { | |
border-radius: 4px; | |
padding: 1px 6px !important; | |
} | |
.tpro-project { | |
background-color: #c377e0; | |
color: #ffffff; | |
position: absolute; | |
top: 7px; | |
} | |
.tpro-tag.tpro-label { | |
background-color: #00c2e0; | |
color: #ffffff !important; | |
font-size: 13px !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment