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
<!-- | |
BOILERPLATE FOR TUMBLR THEME DEVELOPMENT | |
Based on the code from <https://buildthemes.tumblr.com/> | |
Available under the 0BSD license (https://opensource.org/license/0bsd/) | |
--> | |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta name="Description" content="{MetaDescription}" /> | |
<title>{block:SearchPage}{lang:Search results for SearchQuery} - {/block:SearchPage}{block:PostTitle}{PostTitle} - {/block:PostTitle}{Title}</title> | |
<link rel="shortcut icon" href="{Favicon}" /> | |
<link rel="apple-touch-icon" href="{PortraitURL-128}"/> |
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
import { Preset, Rule } from 'unocss' | |
const displayRules: Rule[] = | |
['none','inline','inline-block','block','grid','inline-grid','flex','inline-flex','table','table-row','table-cell'] | |
.map(display => [`d-${display}`, { display }]); | |
const flexDirectionRules: Rule[] = | |
['row','row-reverse','column','column-reverse'] | |
.map(direction => [`flex-${direction}`, { 'flex-direction': direction }]); | |
const textAlignRules: Rule[] = | |
['left','right','center'].map(alignment => [`text-${alignment}`, { 'text-align': alignment }]); |
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
:root { | |
/* font families */ | |
--font-body: Verdana,sans-serif; | |
--font-heading: "Segoe UI",Arial,sans-serif; | |
/* Colors */ | |
--color-amber: #ffc107; | |
--color-aqua: #00ffff; | |
--color-blue: #2196F3; | |
--color-light-blue: #87CEEB; | |
--color-brown: #795548; |
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
:root { | |
/* Colors > Slate */ | |
--tw-slate-50: #f8fafc; | |
--tw-slate-100: #f1f5f9; | |
--tw-slate-200: #e2e8f0; | |
--tw-slate-300: #cbd5e1; | |
--tw-slate-400: #94a3b8; | |
--tw-slate-500: #64748b; | |
--tw-slate-600: #475569; |
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
// ---------------------------------------------------------- | |
// module imports | |
// const { existsSync, mkdirSync, readFileSync, writeFileSync } = require('fs'); | |
// const { execSync } = require('child_process'); | |
// ---------------------------------------------------------- | |
// parse commandline arguments | |
const argv = require('yargs') |
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
/*: | |
@plugindesc Shop Stock | |
@author armornick | |
@param default-stock | |
@text Default Stock Size | |
@type number | |
@desc The default size of stock for items without note-tag. | |
@default 99 |
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
/*: | |
@plugindesc States Cancelled by Elements | |
@author armornick | |
@help | |
This plugin adds states which are canceled when the inflicted person is hit with | |
an attack with a certain element. | |
=== Usage === |
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
/*: | |
@plugindesc Show equipment skills on equip menu | |
@author armornick | |
@param Equipment Skills Text | |
@desc The label to show above the equipment skills list. | |
@default Equipment Skills | |
@help |
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
/*: | |
@plugindesc Simple crafting system. | |
@author armornick | |
---------------------------------------------------- | |
@help | |
Adds a simple crafting system with a simple crafting menu. |
NewerOlder