Skip to content

Instantly share code, notes, and snippets.

@troymccabe
troymccabe / markup-after.html
Created October 13, 2025 12:12
Sample output for changedetection.io#3501
<!DOCTYPE html><html><head><link rel=stylesheet type='text/css' href='share/feisworx.css'><link rel='shortcut icon' href='share/favicon.ico'><META http-equiv='expires' content='0'><META http-equiv='Content-Type' content='text/html; charset=ISO-8859-1'><title>Dancer - Personal Results</title></head><body><table border='0'><tr><td align='left' valign='bottom' width='20%'><a href='index.php'><img src='../images/FeisWorxLogo2.gif' alt='FeisWorx' border='0'></a></td><td align='center' valign='top' width='60%'><h1>Dancer - Personal Results</h1></td><td align='right' valign='bottom' width='20%'><font size='-2'><a href='mailto:info@feisworx.com'>Contact us</a><br /><a href='faq.php'>Help!</a></font></td></tr></table><br /><table align='center' width='600'><tr><td align='center' valign='top'><a href='https://www.feisworx.com/index.php' class='sel'>Home&nbsp;Page</a></td><td align='center' valign='top'><a href='selectdancer.php' class='sel'>My&nbsp;Registrations</a></td><td align='center' valign='top'><a href='results
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../paper-icon-button/paper-icon-button.html">
<link rel="import" href="../core-drawer-panel/core-drawer-panel.html">
<polymer-element name="my-element">
<template>
@troymccabe
troymccabe / core.less
Created August 17, 2013 18:23
Multi-striped gradient for Bootstrap
#gradient {
.multi-striped(@color1: #555, @color2: #999, @angle: 45deg) {
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,.15)), color-stop(.25, @color2), color-stop(.5, @color2), color-stop(.5, rgba(255,255,255,.15)), color-stop(.75, rgba(255,255,255,.15)), color-stop(.75, @color2), to(@color2));
background-image: -webkit-linear-gradient(@angle, rgba(255,255,255,.15) 25%, @color2 25%, @color2 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, @color2 75%, @color2);
background-image: -moz-linear-gradient(@angle, rgba(255,255,255,.15) 25%, @color2 25%, @color2 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, @color2 75%, @color2);
background-image: linear-gradient(@angle, rgba(255,255,255,.15) 25%, @color2 25%, @color2 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, @color2 75%, @color2);
}
}