- v1.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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
<style id="jsbin-css"> | |
.ui-content .ui-text { | |
height: 6em; | |
overflow: hidden; | |
} |
対応状況は、開発前に常に確認しましょう。
- CanIuse
http://caniuse.com/#search=svg
アウトラインをまず仕様書で確認。
- Scalable Vector Graphics (SVG) 1.1 (第2版) http://www.hcn.zaq.ne.jp/___/SVG11-2nd/
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
[color] | |
ui = true | |
branch = auto | |
diff = auto | |
interactive = auto | |
status = auto | |
[alias] | |
co = checkout | |
st = status | |
ci = commit |
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
<html> | |
<head> | |
<link rel="stylesheet" type="text/css" href="http://ff-a.sp.mbga.jp/smart/ffjm/css/min/ffjm-all.css"> | |
<link rel="stylesheet" type="text/css" href="common.css"> | |
</head> | |
<body> | |
<div class="container" data-slide-role="container"> | |
<ul class="slide" data-slide-role="slide"> |
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 http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<meta http-equiv="Content-Style-Type" content="text/css"> | |
<meta http-equiv="Content-Script-Type" content="text/javascript"> | |
<title>new Document</title> | |
<meta name="description" content="#"> | |
<meta name="keywords" content="#"> |
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
(require "ni/setup") | |
;; 自動設定を利用する | |
(ni-autoload) | |
;; html+-modeの追加 | |
(export 'ed::html+-mode "ed") | |
(autoload 'html+-mode "html+-mode" t) | |
(pushnew '("\\.s?html?$" . html+-mode) *auto-mode-alist* :test 'equal) | |
;;(defvar ed::*html-keyword-file* "C:\Program Files\xyzzy\etc\HTML") |
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
/* | |
html5doctor.com Reset Stylesheet | |
v1.6.1 | |
Last Updated: 2010-09-17 | |
Author: Richard Clark - http://richclarkdesign.com | |
Twitter: @rich_clark | |
*/ | |
html, body, div, span, object, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, |
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 http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<meta http-equiv="Content-Style-Type" content="text/css"> | |
<meta http-equiv="Content-Script-Type" content="text/javascript"> | |
<link rel="stylesheet" media="all" type="text/css" href="styles.css"> | |
</head> | |
<body> | |
<form id="fileSelect"> |