This file contains hidden or 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
<div id="buttons"> | |
<a id="toggle" class="button">Toggle Styles</a> | |
<a id="stately" class="button" href="http://intridea.github.com/stately" target="_blank">Stately on GitHub</a> | |
<a id="intridea" class="button" href="http://www.intridea.com/" target="_blank">Intridea</a> | |
</div> <!--buttons--> | |
<div id="container"> | |
<div id="inner"> | |
<ul class="stately" id="intrideans"> | |
<h3>States With Intrideans</h3> |
This file contains hidden or 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
input[type="text"]:focus, input[type="password"], | |
textarea:focus, select:focus { | |
font-size: 16px; | |
} |
This file contains hidden or 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
~/Library/Application Support/iPhone Simulator/[simulator iOS version]/Library/WebClips |
This file contains hidden or 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
li:before { | |
content: "•"; | |
color: pink; | |
} |
This file contains hidden or 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"> | |
<title>Ben Markowitz</title> | |
<style> | |
html, body { | |
box-sizing: border-box; | |
height: 100%; |
This file contains hidden or 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
/* Twitter Custom CSS */ | |
/* By Ben Markowitz */ | |
/* bpmarkowitz.com */ | |
/* hide trending topics */ | |
[aria-label="Trending"] > div > div{ | |
display: none !important; | |
} | |
/* show the search box & add some padding */ |
This file contains hidden or 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
// | |
// ContentView.swift | |
// | |
// Created by Ben Markowitz | |
// | |
import SwiftUI | |
import AVKit | |
struct ContentView: View { |