Skip to content

Instantly share code, notes, and snippets.

@peternatewood
peternatewood / slider.html
Created August 23, 2019 14:59
Simple Slider with touchscreen swiping
<!DOCTYPE html>
<html>
<head>
<title>Slider</title>
<meta charset="utf-8">
<style type="text/css">
html, body {
width: 100%;
}
body {
@peternatewood
peternatewood / countdown-clock.html
Last active November 29, 2023 15:55
A simple, efficient countdown clock. No jQuery required.
<style type="text/css">
.countdown-container {
display: flex;
align-items: flex-start; /* Use flex-end if the digit titles go above the digits */
justify-content: space-between;
width: 480px;
}
.countdown-container.hide-separators .countdown-separator { display: none }
.countdown-digit-container { width: 22% }