Skip to content

Instantly share code, notes, and snippets.

View darmentrout's full-sized avatar
💭
I've got fun Gists, too.

Damion Armentrout darmentrout

💭
I've got fun Gists, too.
View GitHub Profile
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Details as Tabs</title>
<style>
body {
padding: 3rem;
@darmentrout
darmentrout / modal.html
Created August 30, 2021 18:42
A simple modal with time delay.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modal Test</title>
<style>
* {
box-sizing: border-box;
@darmentrout
darmentrout / animated-chevrons.html
Created October 20, 2021 13:34
Chevron animation designed for TV display
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chevrons</title>
<style>
* { box-sizing: border-box; }
html, body { height: 100%; width: 100%; padding: 0px; margin: 0px; background: black; }
@darmentrout
darmentrout / see-saw.html
Created October 20, 2021 13:36
A colorful animation designed for a TV display
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>See-Saw</title>
<style>
* { box-sizing: border-box; }
html, body { padding: 0px; margin: 0px; height: 100%; width: 100%; background: black }
@darmentrout
darmentrout / analog-clock.html
Last active January 6, 2022 16:30
An analog of an analog clock
<!DOCTYPE html>
<html lang="en"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Analog Clock</title>
<style>
* { box-sizing: border-box; }
html, body { width: 100%; height: 100%; padding: 0; margin: 0; }
@darmentrout
darmentrout / star-links.html
Created February 23, 2022 15:34
Fancy animated stars for links mimic unordered list
@darmentrout
darmentrout / simple-carousel
Created November 11, 2022 16:19
A simple carousel/slider component