Meteor Docs English/Spanish

by clayshannon

HTML

<h1 class="smallcaps">Meteor Docs / Meteor Libros</h1>
<h2>by <span >Meteor Team</span></h2>

<p>En <span>Español</span><span class="consolas"> y </span><span class="englishnomargin"><strong>Inglés</strong></span> / <em><span class="consolas">In </span><span>Spanish</span><span class="consolas"> and </span><span class="englishnomargin"><strong>English</strong></span></em></p>

<p class="smallfont">Traducida por/Translated by B. Clay Shannon</p>

<hr/>
<section>

<p class="chapter">Quick start! / ¡Inicio rápido!</p>
<pre class="english"><strong>Meteor supports OS X, Windows, and Linux.

On Windows? Download the official Meteor installer here.

On OS X or Linux? Install the latest official Meteor release from your terminal:

curl https://install.meteor.com/ | sh
The Windows installer supports Windows 7, Windows 8.1, Windows Server 2008, and Windows Server 2012. The command line installer supports Mac OS X 10.7 (Lion) and above, and Linux on x86 and x86_64 architectures.

Once you've installed Meteor, create a project:

meteor create myapp
Run it locally:

cd myapp
meteor
# Meteor server running on: http://localhost:3000/
Unleash it on the world (on a free server we provide):

meteor deploy myapp.meteor.com</strong></pre>
<pre>Meteor apoya OS X, Windows y Linux.

En Windows? Descargue el instalador oficial Meteor aquí.

En OS X o Linux? Instale la última versión oficial de meteoros desde su terminal:

rizo https://install.meteor.com/ | sh
El instalador de Windows es compatible con Windows 7, Windows 8.1, Windows Server 2008 y Windows Server 2012. La línea de comandos de instalación es compatible con Mac OS X 10.7 (Lion) y superiores, y Linux en x86 y x86_64 arquitecturas.

Una vez que hayas instalado Meteor, crear un proyecto:

meteoro crear miaplicacion
Ejecutar localmente:

miaplicacion cd
meteoro
# Servidor Meteoro se ejecuta en: http: // localhost: 3000 /
Dé rienda suelta en el mundo (en un servidor gratuito que ofrecemos):

despliegue de meteoros...

CSS

body {
    font-family:"Segoe UI", "Palatino Linotype", "Bookman Old Style", "Candara", "Calibri", "Consolas", serif;
    font-size: 1.2em;
}
section, aside, header, footer, nav, article, time {
    display: block;
}
h1 {
    font-family: "Lucida Sans", "Courier";
    text-shadow: -4px 4px 3px #999999;
    font-size: 3em;
}
h2 {
    font-family:"Segoe UI Light", "Consolas", sans-serif;    
}
h3 {
    font-family:"Lucida Sans", "Consolas", "Baskerville", "Palatino Linotype", sans-serif;    
}
.chapter {
    font-size: 2em;
    font-family:"Consolas";
    background: -webkit-linear-gradient(#eee, #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.smallcaps {
    font-variant: small-caps;
}
.smallfont {
    font-size: 0.6em;
}aside {
    color: cornsilk;
    font-family:'Bookman Old School', Candara, Calibri, serif;
}
aside p:last-child {
    margin-bottom:0;
}
span:hover {
    position:relative;
    cursor:pointer;
}
span[title]:hover:after {
    content: attr(title);
    background:yellow;
    padding: 4px 8px;
    color: #000;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 20;
    white-space: nowrap;
}
.marginalize {
    margin-left: 5em;
    margin-right: 5em;
    color: navy;
}
.tightvert {
    line-height: .5;
}
.spanish {
    font-family:"Segoe UI";
}
.english {
    font-family: Candara, "Bookman Old School";
    margin-left: 1em;
    margin-right: 1em;
}
.englishnomargin {
    font-family: Candara, "Bookman Old School";
}
.consolas {
    font-family:"Consolas";
}