This file contains 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
Brad |
This file contains 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
Has a rake task ever borked your mysql login? Yeah, well, after spending an | |
evening figuring out how to solve it, here it is: | |
Stop mysql | |
launchctl unload -w ~/Library/LaunchAgents/com.mysql.mysqld.plist | |
Replace this with your version of this path, MySQL version: | |
/usr/local/Cellar/mysql/5.5.12/bin/mysqld --skip-grant-tables | |
Open new terminal window... |
This file contains 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
position | |
top | |
right | |
bottom | |
left | |
z-index | |
display | |
float | |
width | |
height |
This file contains 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
module Jekyll | |
# Sass plugin to convert .scss to .css | |
# | |
# Note: This is configured to use the new css like syntax available in sass. | |
require 'sass' | |
class SassConverter < Converter | |
safe true | |
priority :low | |
def matches(ext) |
This file contains 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 class="wrap"> | |
<div class="wrap-inner"> | |
<div class="header"> | |
<div class="logo"> | |
<img src="#" /> | |
</div> | |
<div class="site-title">Site Title</div> | |
<div class="nav"> | |
<div class="nav-list"> | |
<div class="nav-item"> |
This file contains 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
.accordion-super h1 { | |
color: blue; | |
font-family: serif; | |
font-size: 20px; | |
} | |
.faq h2.question { | |
color: blue; | |
font-size: 18px; | |
} |
This file contains 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
.accordion-super h1, | |
.faq h2.question { | |
color: blue; | |
} | |
.accordion-super h1, | |
.archive h4 { | |
font-family: serif; | |
} |
This file contains 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 class="accordion"> | |
<div class="separator"> | |
<div class="accordion__head"> | |
<h2 class="accordion__title"> | |
<a class="accordion__toggle js-accordion-toggle" href="#"> | |
<i class="icn icn--accordion js-accordion-state">Open</i> | |
FAQ Question 1</a> | |
</h2> | |
</div> | |
<div class="accordion__body is-closed"> |
This file contains 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
<ul class="accordion list--unstyled" id="archive"> | |
<li class="accordion__item"> | |
<div class="accordion__head"> | |
<h4 class="accordion__title"> | |
<a class="accordion__toggle js-accordion-toggle" href="#"> | |
<i class="icn icn--accordion js-accordion-state">Open</i> | |
January</a> | |
</h4> | |
</div> | |
<div class="accordion__body is-closed"> |
This file contains 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 few base styles | |
=========================================================== */ | |
ul, p { | |
color: #333; | |
margin-top: 0; | |
margin-bottom: 1em; | |
} | |
a { |
OlderNewer