- hogehoge
- hogehoge
- hogehoge
- hogehoge
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
source "https://rubygems.org/" | |
gem 'romankana' | |
gem 'moji' |
rcが取れてsass 3.3.0になったので、&の扱いについて調べ中...
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
// ---- | |
// Sass (v3.3.0) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
/* nest */ | |
.block { | |
background-color: black; | |
.block__elem1 { background-color: tomato;} | |
&__elem2 { background-color: chocolate; } |
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
// ---- | |
// Sass (v3.3.0) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
/* 1: nest */ | |
.block { | |
background-color: lime; | |
.block__elem { | |
background-color: olive; |
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
// ---- | |
// Sass (v3.2.14) | |
// Compass (v0.12.3) | |
// ---- | |
$ns-colors: #F86D9D, #FFF, #E6E6E6, #808080, #000; | |
$i: 0; | |
@each $color in $ns-colors { | |
.ns-debug-colorPalette#{$i} { | |
background: $color; |
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
// ---- | |
// Sass (v3.3.1) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
$ns-colors:#F86D9D,#FFF,#E6E6E6,#808080,#000; | |
@for $i from 1 through length($ns-colors) { | |
.ns-debug-colorPalette#{$i} { | |
background: nth($ns-colors, $i) |
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
.unko { | |
z-index: 101010; | |
// ~~~~~~ | |
// | | +---付けたいz-index | |
// | +-----なんとなく理由のない保険2 | |
// +-------なんとなく理由のない保険1 | |
} |
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 idsetd = charIDToTypeID( "setd" ); | |
var desc1 = new ActionDescriptor(); | |
var idnull = charIDToTypeID( "null" ); | |
var ref1 = new ActionReference(); | |
var idPrpr = charIDToTypeID( "Prpr" ); | |
var idinterfacePrefs = stringIDToTypeID( "interfacePrefs" ); | |
ref1.putProperty( idPrpr, idinterfacePrefs ); | |
var idcapp = charIDToTypeID( "capp" ); |