Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- None of these seem to do anything, but are included for covering all of the backgrounds in the tree:
- .overlay { background-color: rgba(0, 0, 0, 1.0); color: #fff; }
- .overlay .canvas { background-color: rgba(0, 0, 0, 1.0); color: #fff; }
- .overlay .canvas .element[data-type='banner'] { background-color: rgba(0, 0, 0, 1.0); color: #fff; }
- .overlay .canvas .element[data-type='banner']>div { background-color: rgba(0, 0, 0, 1.0); color: #fff; }
- .overlay .canvas .element[data-type='banner'] .active { background-color: rgba(0, 0, 0, 1.0); color: #fff; }
- .overlay .canvas .element[data-type='banner']>div .active { background-color: rgba(0, 0, 0, 1.0); color: #fff; }
- .overlay .canvas .element[data-type='banner'] .active[data-data="latestdonations"] { background-color: rgba(0, 0, 0, 1.0); color: #fff; }
- .overlay .canvas .element[data-type='banner']>div .active[data-data="latestdonations"] { background-color: rgba(0, 0, 0, 1.0); color: #fff; }
- This attempts to change class Title to white, does nothing:
- .overlay .canvas .element[data-type='banner'] .active .title { background-color: rgba(255, 255, 255, 1.0); color: #fff; }
- This changes the class Inner box:
- .overlay .canvas .element[data-type='banner'] .active .inner { background-color: rgba(0, 0, 0, 1.0); color: #fff; }
- This shows that the color is inherited along the way. It should be transparent black, but it shows the color behind instead:
- .overlay .canvas .element[data-type='banner'] .active .inner { background-color: rgba(0, 0, 0, 0.5); color: #fff; }
Add Comment
Please, Sign In to add comment