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
$ brew install libxml2 libxslt | |
$ brew link libxml2 libxslt --force | |
$ wget http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.13.1.tar.gz | |
$ tar xvfz libiconv-1.13.1.tar.gz | |
$ cd libiconv-1.13.1 | |
$ ./configure --prefix=/usr/local/Cellar/libiconv/1.13.1 | |
$ make | |
$ sudo make install | |
$ gem install nokogiri -- --with-xml2-include=/usr/local/Cellar/libxml2/2.7.8/include/libxml2 |
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
function countCSSRules() { | |
var results = '', | |
log = ''; | |
if (!document.styleSheets) { | |
return; | |
} | |
for (var i = 0; i < document.styleSheets.length; i++) { | |
countSheet(document.styleSheets[i]); | |
} | |
function countSheet(sheet) { |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Bookshelf</title> | |
<%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %> | |
<%= javascript_include_tag "application", "data-turbolinks-track" => true %> | |
<%= csrf_meta_tags %> | |
</head> | |
<body> | |
<header class="header"> |
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
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="utf-8"> | |
<title>美味しいカレーのレシピ</title> | |
<meta name="description" content="誰でもできる、美味しいカレーの作り方です。"> | |
</head> | |
<body> | |
<h1>カレーのレシピ</h1> |
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
=rgba($foreground, $backdrop: white, $property: "background-color") | |
#{$property}: mix(fade-in($foreground, 1), $backdrop, percentage(opacity($foreground))) | |
// Browsers without color opacity | |
#{$property}: $foreground | |
// Decent browsers | |
@if $property == "background-color" | |
.lt-ie9 & | |
// IE8 has background filters; use them instead | |
#{$property}: transparent | |
$ie-hex: ie-hex-str($foreground) |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Bookshelf</title> | |
<%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %> | |
<%= javascript_include_tag "application", "data-turbolinks-track" => true %> | |
<%= csrf_meta_tags %> | |
</head> | |
<body> |
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
<h1>書籍一覧</h1> | |
<table> | |
<thead> | |
<tr> | |
<th>Title</th> | |
<th>Price</th> | |
<th></th> | |
<th></th> | |
<th></th> |
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
<h1>書籍一覧</h1> | |
<div class="books"> | |
<% @books.each do |book| %> | |
<div class="book"> | |
<h2 class="book__title"><%= book.title %></h2> | |
<p class="book__price">¥ <%= book.price %></p> | |
<ul class="book__actions"> | |
<li class="book__action--show"><%= link_to '詳細', book %></li> | |
<li class="book__action--edit"><%= link_to '編集', edit_book_path(book) %></li> |
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
// これを全部 | |
// app/assets/stylesheets/books.css.scss に | |
// コピー & 貼り付けする | |
// 色の設定 | |
$bgColor: #dfcf8f; | |
$baseColor: #dff1f8; | |
$textBlack: #444444; | |
$textWhite: #ffffff; |
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
<h1>書籍一覧</h1> | |
<ul class="books"> | |
<% @books.each do |book| %> | |
<li class="book"> | |
<h2 class="book__title"><%= book.title %></h2> | |
<p class="book__price"> | |
<span class="book__price-label">価格</span> | |
<%= book.price %> | |
</p> |