@import 'reset';
$font-stack: Helvetica, sans-serif;
$primary-color: #333;
body {
font: 100% $font-stack;
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
nonbinary #524d52,#736e73,#A06ABD,#ffffff,#A06ABD,#FFFFFF,#fff200,#A06ABD | |
trans #84d1e3,#452842,#eb94c4,#ffffff,#c0e7f0,#706156,#EB94C4,#EB94C4 | |
ace #6b4968,#8c5e88,#d3c7d9,#292328,#ba79b5,#FFFFFF,#292328,#a69ea8 |
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
// social media links settings page | |
function social_links_page() { ?> | |
<div class="wrap"> | |
<h1>Social Links</h1> | |
<form method="post" action="options.php"> | |
<?php settings_fields("section"); | |
do_settings_sections("social-links"); | |
submit_button(); ?> | |
</form> |
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
"use strict"; | |
const angular = require("angular"); | |
// reference: https://stackoverflow.com/questions/17470790/how-to-use-a-keypress-event-in-angularjs | |
angular.module("mixtape").directive("ngEnter", function () { | |
return { | |
controller: "MixCtrl", | |
link: function (scope, element, attrs) { | |
element.bind("keydown keypress", function (event) { |
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
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH=~/.oh-my-zsh | |
DEFAULT_USER="kenzie" | |
ZSH_THEME="kenziebottoms" |
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
<script type="text/javascript"> | |
// hard-coded product id of mile rate woocommerce product | |
let productId = 246; | |
let map, auto; | |
const v1_url = window.theme_bundle_data.rest_url + 'sim/cremation/shop/v1/'; | |
const v2_url = window.theme_bundle_data.rest_url + 'sim/cremation/shop/v2/'; |
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
{ | |
"trailingComma": "es5", | |
"tabWidth": 2, | |
"semi": true, | |
"singleQuote": true, | |
"overrides": [ | |
{ | |
"files": "*.scss", | |
"options": { | |
"tabWidth": 4 |
OlderNewer