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
| .clearfix:before, | |
| .clearfix:after { | |
| content: " "; | |
| /* 1 */ | |
| display: table; | |
| /* 2 */ | |
| } | |
| .clearfix:after { |
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
| .container { | |
| margin-right: auto; | |
| margin-left: auto; | |
| } | |
| .container:before, | |
| .container:after { | |
| content: " "; | |
| /* 1 */ | |
| display: table; |
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
| a, | |
| a:visited { | |
| text-decoration: underline; | |
| } | |
| a[href]:after { | |
| content: " (" attr(href) ")"; | |
| } | |
| abbr[title]:after { | |
| content: " (" attr(title) ")"; | |
| } |
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
| /*! | |
| * Bootstrap v3.0.0-rc.2 | |
| * | |
| * Copyright 2013 Twitter, Inc | |
| * Licensed under the Apache License v2.0 | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Designed and built with all the love in the world @twitter by @mdo and @fat. | |
| */ |
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
| CSS: | |
| #mainDiv { | |
| height: 100px; | |
| width: 80px; | |
| position: relative; | |
| border-bottom: 2px solid #f51c40; | |
| background: #3beadc; | |
| } |
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
| .container, | |
| .navbar-static-top .container, | |
| .navbar-fixed-top .container, | |
| .navbar-fixed-bottom .container { | |
| width: 945px; | |
| } | |
| .span16 { | |
| width: 945px; | |
| } | |
| .span15 { |
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
| var layerToGeometry = function(layer) { | |
| var json, type, latlng, latlngs = [], i; | |
| if (L.Marker && (layer instanceof L.Marker)) { | |
| type = 'Point'; | |
| latlng = LatLngToCoords(layer._latlng); | |
| return JSON.stringify({"type": type, "coordinates": latlng}); | |
| } else if (L.Polygon && (layer instanceof L.Polygon)) { | |
| type = 'Polygon'; |
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
| You've asked a lot of questions in one, but I'll help you with as many of them as I can. | |
| First, you need to add your IRC server of choice - fire up irssi, and type the following: | |
| /server add -auto -network Freenode irc.freenode.net 6667 | |
| That will add the Freenode IRC network to your IRSSI config, and will automatically connect when you run irssi. | |
| /network add -nick <your-nick> Freenode |
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
| @keyframes crt-on { | |
| 0% { | |
| opacity: 0.0; | |
| transform: scale(0.5, 0.005); | |
| box-shadow: inset 0 9999px 0 rgba(255,255,255,1.0); | |
| } | |
| 40% { | |
| opacity: 1.0; | |
| } | |
| 70% { |
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> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta content="yes" name="apple-mobile-web-app-capable"> | |
| <title></title> | |
| <!-- iPhone --> | |
| <link href="http://taylor.fausak.me/static/images/apple-touch-icon-57x57.png" |