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
.wrapper-space-view-page { | |
max-width: 1200px; | |
margin: 0 auto; | |
} | |
#content.edit form.aui { | |
max-width: 1200px; | |
width: 1200px; | |
margin: 0 auto; | |
box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.5); |
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
// Add to your user or workspace settings: | |
"incrementor.enums": [ | |
[ | |
"false", | |
"true" | |
], | |
[ | |
"let", | |
"const" | |
], |
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
{ | |
"Ansi 7 Color" : { | |
"Green Component" : 0.73333334922790527, | |
"Blue Component" : 0.73333334922790527, | |
"Red Component" : 0.73333334922790527 | |
}, | |
"Tags" : [ | |
], | |
"Ansi 12 Color" : { |
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
module.exports = { | |
config: { | |
fontSize: 12, | |
fontFamily: 'Menlo, "DejaVu Sans Mono", "Lucida Console", monospace', | |
cursorColor: '#F81CE5', | |
foregroundColor: '#fff', | |
backgroundColor: '#000', | |
borderColor: '#333', | |
css: '', | |
termCSS: '', |
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
/* | |
* Querying all tribe (The Events Calendar Pro) events… | |
* - with a certain category (e.g. 'course') | |
* - starting today or later | |
*/ | |
$events = get_posts( array( | |
'post_type' => 'tribe_events', | |
'posts_per_page' => 20, | |
'tax_query' => array( |