Skip to content

Instantly share code, notes, and snippets.

View Middi's full-sized avatar

Richard Middleton Middi

  • Leeds, U.K.
View GitHub Profile
@Middi
Middi / cloudSettings
Last active February 11, 2020 20:07
Visual Studio Code Settings Sync Gist
{"lastUpload":"2020-02-11T19:42:16.623Z","extensionVersion":"v3.4.2"}
@Middi
Middi / pacman-map.js
Created May 23, 2018 12:33
Pacman Map
var textMap = [
['0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0'],
['0 + - - - - + - - - - - + 0 + - - - - - + - - - - + 0'],
['0 | 0 0 0 0 | 0 0 0 0 0 | 0 | 0 0 0 0 0 | 0 0 0 0 | 0'],
['0 | 0 0 0 0 | 0 0 0 0 0 | 0 | 0 0 0 0 0 | 0 0 0 0 | 0'],
['0 | 0 0 0 0 | 0 0 0 0 0 | 0 | 0 0 0 0 0 | 0 0 0 0 | 0'],
['0 + - - - - + - - + - - + - + - - + - - + - - - - + 0'],
['0 | 0 0 0 0 | 0 0 | 0 0 0 0 0 0 0 | 0 0 | 0 0 0 0 | 0'],
['0 | 0 0 0 0 | 0 0 | 0 0 0 0 0 0 0 | 0 0 | 0 0 0 0 | 0'],
['0 + - - - - + 0 0 + - - + 0 + - - + 0 0 + - - - - + 0'],
@Middi
Middi / page-home.php
Last active August 14, 2017 20:53
home page with thumbnail loop causing problems
<?php
/*
Template Name: Home Page
*/
define( 'WP_USE_THEMES', false ); get_header(); ?>
@Middi
Middi / Toggle.HTML
Created August 3, 2017 14:38
Toggle HTML
<label class="switch">
<input type="checkbox">
<span class="slider round"></span>
</label>
@Middi
Middi / toggle.scss
Last active August 3, 2017 14:39
Toggle Styles
/* The switch - the box around the slider */
.switch {
width: 40px;
height: 22px;
position: relative;
display: inline-block;
}
/* Hide default HTML checkbox */
.switch input {display:none}
@Middi
Middi / Round.html
Created August 2, 2017 19:39
Button Round Outline HTML
<button class="btn btn-outline btn-round" type="button">Round</button>
@Middi
Middi / Round.scss
Last active August 2, 2017 19:38
Button Round Outline SCSS
.btn {
border: none;
background: none;
line-height: 1em;
color: $black;
font-size: 1rem;
font-weight: 500;
margin: 0 .25em 0 0;
border: 2px solid $brand;
border-radius: .28rem;
@Middi
Middi / outline.html
Created August 2, 2017 19:32
Button Outline HTML
<button class="btn btn-outline btn-round" type="button">Round</button>
@Middi
Middi / Outline.scss
Created August 2, 2017 19:30
Button Outline Styles
.btn {
border: none;
background: none;
line-height: 1em;
color: $black;
font-size: 1rem;
font-weight: 500;
margin: 0 .25em 0 0;
border: 2px solid $brand;
border-radius: .28rem;
@Middi
Middi / button.html
Last active August 2, 2017 19:26
Standard Button
<button class="btn bg-brand" type="button">Button</button>