This file contains 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
div.bbp-breadcrumb, div.bbp-topic-tags, | |
#bbpress-forums, | |
div.bbp-template-notice li, div.bbp-template-notice p, | |
#bbpress-forums ul.bbp-forums, #bbpress-forums ul.bbp-lead-topic, #bbpress-forums ul.bbp-replies, #bbpress-forums ul.bbp-search-results, #bbpress-forums ul.bbp-topics { | |
font-size: 1.2em; | |
line-height: 1.5em; | |
} | |
#bbpress-forums .bbp-forum-info .bbp-forum-content, #bbpress-forums p.bbp-topic-meta { | |
font-size: 1em |
This file contains 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
// Remove WordPress Print styles | |
document.querySelector('link[media="print"]').remove() | |
// Remove the site header and nav | |
document.querySelector('header').remove() | |
// Change page name, About, to my name. | |
document.querySelector('h1').textContent = "Justin Geeslin"; | |
// Remove the margin from the paragraph preceding list of one bullet | |
document.querySelector('h3:nth-of-type(2) + p').style.margin = 0; | |
// Turn down for print | |
document.querySelector('body').style.fontSize = '0.9em'; |
This file contains 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
/** | |
* Collecting quotes and experiences to form a timeline of volunteer experience. | |
* Spirtual ingredients included. | |
*/ | |
html { | |
font-family: Tahoma,sans-serif; | |
background: #f06; | |
background: linear-gradient(15deg, #39A0C3, #39A0C3); | |
color:white; | |
min-height: 100%; |
This file contains 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
/** | |
* Collecting quotes and experiences to form a timeline of volunteer experience. | |
* Spirtual ingredients included. | |
*/ | |
html { | |
font-family: Tahoma,sans-serif; | |
background: #f06; | |
background: linear-gradient(45deg, #6100B0, #00FCCA); | |
color:white; | |
min-height: 100%; |
This file contains 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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
html,body { | |
background: black; | |
min-height: 100%; | |
color:#787878; | |
font-family:tahoma; | |
} |