You start with this:
And must end up with this:
// Scss Utils | |
// @author EtienneLem | |
// CSS3 misc | |
@mixin rounded ( $radius, $prefix:'' ) { | |
@include prefixes(border-radius, $radius, $prefix); | |
} | |
@mixin box-shadow ( $value ) { | |
@include prefixes(box-shadow, $value); |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>beforeRunningCommand</key> | |
<string>saveActiveFile</string> | |
<key>command</key> | |
<string>#!/usr/bin/env ruby | |
# encoding: utf-8 |
# Original BrowserDetect.js: @Teevio (http://teev.io/blog/text/13423292) | |
# Original idea: @rogie (http://rog.ie/post/9089341529/html5boilerplatejs) | |
# CoffeeScript implementation: @EtienneLem | |
class BrowserDetect | |
@init: -> | |
browser = @searchString(@dataBrowser) || "An unknown browser" | |
version = @searchVersion(navigator.userAgent) || @searchVersion(navigator.appVersion) || "An unknown version" | |
os = @searchString(@dataOS) || "An unknown OS" |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>beforeRunningCommand</key> | |
<string>saveActiveFile</string> | |
<key>command</key> | |
<string>#!/usr/bin/env ruby | |
# encoding: utf-8 |
namespace :assets do | |
# `bundle exec rake assets:compile` | |
# * Compile stylesheets and javascripts | |
desc 'compile assets' | |
task :compile => [:compile_css, :compile_js] do | |
end | |
# `bundle exec rake assets:compile_css` | |
# IN => /app/assets/stylesheets/styles.styl | |
# OUT => /public/css/styles-<version>.min.css |
// Fairly safe way to visually hide content, but make it accessible to screen readers | |
.visually-hidden { | |
position: absolute; | |
left: -9999px; | |
height: 1px; | |
} | |
@media screen and (max-width: 700px) { | |
// Again, accessible to screen readers | |
// Example: <a href="/login" class="icon icon-twitter"><span class="mobile-offscreen">Single-click </span> log in with Twitter</a> |
# As of right now, it will only work with a rdio-cli build from https://github.com/EtienneLem/rdio-cli/tree/commands-list | |
# Rdio completions | |
rdio_commands=(`rdio commands`) | |
compctl -k rdio_commands rdio |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<style> | |
* { | |
margin: 0; padding: 0; | |
-webkit-box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
-ms-box-sizing: border-box; |