Skip to content

Instantly share code, notes, and snippets.

View manbearwolf's full-sized avatar
🌴
On vacation

Matt Bott manbearwolf

🌴
On vacation
View GitHub Profile
@manbearwolf
manbearwolf / Custom CSS3 In Blogger Posts1.css
Created November 10, 2017 16:17
Custom CSS3 In Blogger Posts
.custom2 img
{
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
}
.custom2 img:hover
{
-o-transition: all 0.6s;
@manbearwolf
manbearwolf / sntaxpost.html
Last active November 10, 2017 15:58
Syntax Post 1
<b:if cond="data:blog.pageType == "item"">
<script src="https://manbearwolf.github.io/Backup-Repo/syntaxhighlighter_3.0.83-master/scripts/shCore.js"></script>
<link href="https://manbearwolf.github.io/Backup-Repo/syntaxhighlighter_3.0.83-master/styles/shCore.css" rel="stylesheet" />
<link href=" https://manbearwolf.github.io/Backup-Repo/syntaxhighlighter_3.0.83-master/styles/shThemeDefault.css" rel="stylesheet" />
<script src="https://manbearwolf.github.io/Backup-Repo/syntaxhighlighter_3.0.83-master/scripts/shBrushJava.js"></script>
<script src="https://manbearwolf.github.io/Backup-Repo/syntaxhighlighter_3.0.83-master/scripts/shBrushXml.js"></script>
<script language="javascript" type="text/javascript">
SyntaxHighlighter.config.bloggerMode = true;
@manbearwolf
manbearwolf / sntaxpost.html
Last active November 10, 2017 15:42
Syntaxhighlighter Post2
<pre class="brush: java">
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World!");
}}
</pre>
banner_image...
img src="{{ post.banner_image }}"
@manbearwolf
manbearwolf / Code Highlighter Language List.txt
Created November 3, 2017 02:45
{% highlight %} {% endhighlight %}
Code Highlighter Languages
actionscript: ActionScript [aliases: as,as3]
apache: configuration files for Apache web server
apiblueprint: Markdown based API description language. [aliases: apiblueprint,apib]
applescript: The AppleScript scripting language by Apple Inc. (http://developer.apple.com/applescript/)
biml: BIML, Business Intelligence Markup Language
c: The C programming language
ceylon: Say more, more clearly.
cfscript: CFScript, the CFML scripting language [aliases: cfc]
<!-- Html Elements for Search -->
<div id="search-container">
<input type="text" id="search-input" placeholder="search...">
<ul id="results-container"></ul>
</div>
<!-- Script pointing to search-script.js or search-script.min.js https://github.com/christian-fei/Simple-Jekyll-Search/tree/master/dest or in header-->
@manbearwolf
manbearwolf / custom.js
Created October 31, 2017 01:43
Fancybox Init Placement.... Options...??
$(document).ready(function(){
// Responsive video embeds
$('.entry-content').fitVids();
// Fancybox Init
$("[data-fancybox]").fancybox({
// Options will go here
// Enable keyboard navigation
keyboard : true,
// Should display navigation arrows at the screen edges
@manbearwolf
manbearwolf / index.html
Last active October 30, 2017 06:01
To Move Blue Post Wrapper To Under Picture Procedure... (BlogInn) (https://themeforest.net/item/bloginn-bold-theme-for-jekyll/15504914/comments)
<div class="entry-header-wrap"> <!-- Mvoe From -->
@manbearwolf
manbearwolf / &nbsp;.md
Created October 25, 2017 04:09
How to make <tt></tt> in Markdown equal correct in posts (Jekyll) Note: use &nbsp;

D:\Games\Steamlibrary

<script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.5.5/clipboard.min.js"></script>
<script>new Clipboard('.btn');</script>
<input id="input" style="width: 300px;" value="Some Text" />
<button class="btn" data-clipboard-target="#input">Copy</button>