Skip to content

Instantly share code, notes, and snippets.

View RyanNHahn's full-sized avatar

Ryan Hahn RyanNHahn

View GitHub Profile
@RyanNHahn
RyanNHahn / css-selectors.md
Created October 24, 2018 13:48 — forked from magicznyleszek/css-selectors.md
CSS Selectors Cheatsheet

CSS Selectors Cheatsheet

Element selectors

Element -- selects all h2 elements on the page

h2 {
    foo: bar;
@RyanNHahn
RyanNHahn / index.html
Last active December 16, 2016 19:15
CSS iPhone
<div class="phone">
<h1>iPhone 6</h1>
<div class="screen"></div>
<div class="home-button"></div>
</div>
@RyanNHahn
RyanNHahn / HTML Lists Example
Last active December 29, 2015 13:29
HTML Lists Example
This exercise will show you how lists can be created using HTML.
/**
* The first commented line is your codelet’s title
*/
p {
color: #f06123;
font: italic 123% Georgia, serif;
transition: 1s cubic-bezier(.2,.6,.8,.8);
width: 400px;
}