Skip to content

Instantly share code, notes, and snippets.

View lmclister's full-sized avatar

Larry McLister lmclister

View GitHub Profile
Process: BlueJeans [15363]
Path: /Applications/BlueJeans.app/Contents/MacOS/BlueJeans
Identifier: com.bluejeansnet.Blue
Version: 2.19.0 (2.19.0.311)
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: BlueJeans [15363]
User ID: 501
Date/Time: 2020-03-12 14:32:01.795 -0700
@lmclister
lmclister / gist:444dc706ae3fed999a16
Last active August 29, 2015 14:01
CSS Shapes Modernizr Example 2
<html>
<head>
<script src="modernizr.js"></script>
<style>
h1 { color: red; }
.shapes h1 { color: green; }
</style>
</head>
<body>
<h1>This text is GREEN if CSS Shapes is supported, and RED if not.</h1>
@lmclister
lmclister / gist:89bca2d089fd40ecb88f
Last active August 29, 2015 14:01
CSS Shapes Modernizr Example 1
<html>
<head>
<script src="modernizr.js"></script>
</head>
<body>
<script>
if (Modernizr.shapes)
alert("CSS Shapes is supported in your browser!");
else
alert("Your browser doesn't support CSS Shapes yet.");