Created
January 12, 2020 05:11
-
-
Save Gimcrack/d00b48079934726a22480456ccf9419d to your computer and use it in GitHub Desktop.
TrelloScrumStyle.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
| /*======================================================== | |
| = Scrum for your Trello board = | |
| ========================================================== | |
| @author: Vinícius Stutz | |
| @site: http://www.vinicius-stutz.com/ | |
| @date: 7 jan 2016 | |
| */ | |
| body { | |
| background-color: #222 !important; | |
| } | |
| span.header-logo-default { | |
| display: none; | |
| background: none; | |
| } | |
| a.list-header-menu-icon { | |
| color: #ecf0f1; | |
| } | |
| div.list.js-list-content { | |
| border-radius: 0; | |
| height: 100%; | |
| } | |
| a.open-card-composer:hover { | |
| background-color: transparent !important; | |
| } | |
| div.list-card { | |
| margin-top: 10px; | |
| } | |
| div#board div.js-list.list-wrapper { | |
| margin: 0; | |
| border-radius: 0; | |
| border-left: 1px solid #222; | |
| border-right: 1px solid #222; | |
| } | |
| div#board div.js-list.list-wrapper:nth-child(1) div.list.js-list-content div.list-header { | |
| background-color: #2c3e50; | |
| color: white !important; | |
| padding: 14px; | |
| } | |
| div#board div.js-list.list-wrapper:nth-child(2) div.list.js-list-content div.list-header { | |
| background-color: #3498db; | |
| color: white !important; | |
| padding: 14px; | |
| } | |
| div#board div.js-list.list-wrapper:nth-child(3) div.list.js-list-content div.list-header { | |
| background-color: #8e44ad; | |
| color: white !important; | |
| padding: 14px; | |
| } | |
| div#board div.js-list.list-wrapper:nth-child(4) div.list.js-list-content div.list-header { | |
| background-color: #e74c3c; | |
| color: white !important; | |
| padding: 14px; | |
| } | |
| div#board div.js-list.list-wrapper:nth-child(5) div.list.js-list-content div.list-header { | |
| background-color: #2ecc71; | |
| color: white !important; | |
| padding: 14px; | |
| } | |
| div#board div.js-list.list-wrapper:nth-child(6) div.list.js-list-content div.list-header { | |
| background-color: #448ead; | |
| color: white !important; | |
| padding: 14px; | |
| } | |
| div#board { | |
| display: flex; | |
| justify-content: space-around; | |
| } | |
| /* I use the Scrum for Trello extension in addition */ | |
| body .list-card-labels { | |
| float: left; | |
| top: -2px; | |
| left: -6px; | |
| max-width: 100%; | |
| margin: 0; | |
| text-align: left; | |
| } | |
| body .list-card-labels .card-label { | |
| float: right; | |
| width: auto; | |
| height: 16px; | |
| line-height: 16px; | |
| padding: 0 3px; | |
| margin: 0 0 2px 2px; | |
| font-size: 9px; | |
| border-radius: 3px; | |
| overflow: visible; | |
| text-shadow: none !important; | |
| } | |
| body .list-card-details { | |
| padding: 4px 8px; | |
| } | |
| /* display card id */ | |
| body .card-short-id.hide { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| display: none; | |
| height: 16px; | |
| line-height: 16px; | |
| padding: 0 3px; | |
| font-weight: bold; | |
| font-size: 11px; | |
| background: #fff; | |
| border-radius: 3px 0; | |
| } | |
| body .has-cover .card-short-id.hide { | |
| border-radius: 0 0 3px 0; | |
| } | |
| body .list-card-title { | |
| margin: 16px 0 10px; | |
| } | |
| /* bottom edit link */ | |
| body .list-card-operation { | |
| top: auto; | |
| right: 0; | |
| bottom: 0; | |
| padding: 1px; | |
| } | |
| /* display total cards count */ | |
| body .list-header-num-cards.hide { | |
| display: inline-block; | |
| font-size: 11px; | |
| color: #ddd; | |
| margin-left: 10px; | |
| } | |
| .list-header-name { | |
| color: #ddd !important; | |
| } | |
| .js-add-list { | |
| display: none !important; | |
| } | |
| .list-wrapper { | |
| border: none !important; | |
| width: unset !important; | |
| flex: 1; | |
| margin: 0 1em !important; | |
| } | |
| .list { | |
| background: rgba(0,0,0,0.3); | |
| border: none !important; | |
| } | |
| .list-card { | |
| background : rgba(0,0,0,0.3) !important; | |
| color: white !important; | |
| } | |
| .list-card-title { | |
| color: white; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment