forked from VimPlug/emmet-vim
import.
This commit is contained in:
66
index.html
Normal file
66
index.html
Normal file
@@ -0,0 +1,66 @@
|
||||
<!doctype html>
|
||||
<head>
|
||||
<title>ZenCoding.vim</title>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="stylesheet" href="static/css/style-sites.css" type="text/css" />
|
||||
<!--[if IE]>
|
||||
<script type="text/javascript">
|
||||
document.createElement('header');
|
||||
document.createElement('section');
|
||||
document.createElement('nav');
|
||||
document.createElement('aside');
|
||||
document.createElement('footer');
|
||||
document.createElement('article');
|
||||
</script>
|
||||
<![endif]-->
|
||||
<script type="text/javascript" src="static/js/jquery-latest.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<img id="logo" alt="ZenConding" src="static/images/zencoding-vim-logo.png" title="禅" />
|
||||
<h2>vim plugins for HTML and CSS hi-speed coding.</h2>
|
||||
<section id="content">
|
||||
<article id="whats">
|
||||
<h2 class="maintitle">Whats</h2>
|
||||
<p>zencoding for vim</p>
|
||||
</article>
|
||||
<br />
|
||||
<article id="install" class="blocked-content">
|
||||
<h2 class="maintitle">Install</h2>
|
||||
<p>copy zencoding.vim to your ftplugin directory</p>
|
||||
<pre class="code">
|
||||
# mkdir ~/.vim/ftplugin/html
|
||||
# cp zencoding.vim ~/.vim/ftplugin/html/.
|
||||
</pre>
|
||||
</article>
|
||||
<br />
|
||||
<article id="howworkthis" class="blocked-content">
|
||||
<h2 class="maintitle">How This Work</h2>
|
||||
<p>
|
||||
<em>Under construction. This will be widget of ttyshare?</em>
|
||||
</p>
|
||||
</article>
|
||||
<br />
|
||||
<article id="repo" class="blocked-content">
|
||||
<h2 class="maintitle">Repository</h2>
|
||||
<p>
|
||||
<a href="http://github.com/mattn/zencoding-vim/">http://github.com/mattn/zencoding-vim/</a>
|
||||
</p>
|
||||
</article>
|
||||
<br />
|
||||
<article id="license" class="blocked-content">
|
||||
<h2 class="maintitle">License</h2>
|
||||
<p>BSD style license.</p>
|
||||
</article>
|
||||
<br />
|
||||
<article id="author" class="blocked-content">
|
||||
<h2 class="maintitle">Author</h2>
|
||||
<p>Project authors:</p>
|
||||
<div>
|
||||
<ul>
|
||||
<li><a href="http://mattn.kaoriya.net/" rel="me">Yasuhiro Matsumoto</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</article>
|
||||
<br />
|
||||
</section>
|
||||
</body>
|
||||
94
static/css/style-sites.css
Normal file
94
static/css/style-sites.css
Normal file
@@ -0,0 +1,94 @@
|
||||
@charset "utf-8"
|
||||
|
||||
section, article, aside, hgroup, header, footer, nav, figure { display: block; }
|
||||
|
||||
body {
|
||||
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", "MS Pゴシック", Verdana, Geneva, Arial, Helvetica;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
section {
|
||||
clear:both;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
article {
|
||||
}
|
||||
|
||||
img {
|
||||
border: none;
|
||||
}
|
||||
|
||||
#content {
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-family: 'Verdana', 'Arial';
|
||||
padding: 0.5em; margin-top: 0; margin-bottom: 0;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
background: transparent url(../images/allow-right-orange.png) no-repeat scroll 0%;
|
||||
padding-left: 26px;
|
||||
line-height: 26px;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.maintitle {
|
||||
background: transparent url(../images/allow-right-green.png) no-repeat scroll 0%;
|
||||
padding-left: 26px;
|
||||
line-height: 26px;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.blocked-content {
|
||||
padding: 1em;
|
||||
border: 1px dotted gray;
|
||||
font-family: 'Verdana', 'Arial';
|
||||
}
|
||||
|
||||
a{
|
||||
color: #006699;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:link {
|
||||
color: #006699;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: #006699;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #006699;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
li a, h3 a {
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
background-color:none;
|
||||
text-decoration:none;
|
||||
color: #333333;
|
||||
text-shadow:1px 1px 1px #ffffff;
|
||||
line-height: 25px;
|
||||
}
|
||||
li a:hover, li a:active, h3 a:hover, li a:active {
|
||||
background-color:#334d55;
|
||||
text-decoration:none;
|
||||
color:#ffffff;
|
||||
text-shadow:1px 1px 1px #000000;
|
||||
}
|
||||
|
||||
pre.code {
|
||||
padding: 1em;
|
||||
border: 1px dotted gray;
|
||||
font-family: 'Verdana', 'Arial';
|
||||
color: white;
|
||||
background: gray;
|
||||
width: 500px;
|
||||
}
|
||||
|
||||
BIN
static/images/ajax-loader.gif
Normal file
BIN
static/images/ajax-loader.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 673 B |
BIN
static/images/allow-right-green.png
Normal file
BIN
static/images/allow-right-green.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 978 B |
BIN
static/images/allow-right-orange.png
Normal file
BIN
static/images/allow-right-orange.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.3 KiB |
BIN
static/images/logo.png
Normal file
BIN
static/images/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.1 KiB |
BIN
static/images/zencoding-vim-logo.png
Normal file
BIN
static/images/zencoding-vim-logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 17 KiB |
3549
static/js/jquery-latest.js
vendored
Normal file
3549
static/js/jquery-latest.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user