Skip to content

Commit

Permalink
initial version
Browse files Browse the repository at this point in the history
  • Loading branch information
No9 committed Jun 14, 2015
1 parent 20be59d commit 855fdf2
Show file tree
Hide file tree
Showing 14 changed files with 1,526 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,5 @@ build/Release
# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules

*.old
27 changes: 27 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# chromiumify is an OPEN Open Source Project

-----------------------------------------

## What?

Individuals making significant and valuable contributions are given commit-access to the project to contribute as they see fit. This project is more like an open wiki than a standard guarded open source project.

## Rules

There are a few basic ground-rules for contributors:

1. **No `--force` pushes** or modifying the Git history in any way.
1. **Non-master branches** ought to be used for ongoing work.
1. **External API changes and significant modifications** ought to be subject to an **internal pull-request** to solicit feedback from other contributors.
1. Internal pull-requests to solicit feedback are *encouraged* for any other non-trivial contribution but left to the discretion of the contributor.
1. Contributors should attempt to adhere to the prevailing code-style.

## Releases

Declaring formal releases remains the prerogative of the project owners.

## Changes to this arrangement

This is an experiment and feedback is welcome! This document may also be subject to pull-requests or changes by contributors where you believe you have something valuable to add or change.

-----------------------------------------
149 changes: 149 additions & 0 deletions css/github-prettify-theme.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,149 @@
/* GitHub Theme */
.prettyprint {
background: #fff;
font-family: Menlo, 'Bitstream Vera Sans Mono', 'DejaVu Sans Mono', Monaco, Consolas, monospace;
font-size: 1.2rem;
padding: 2.5rem 3rem;
-webkit-font-smoothing: antialiased;
}

.pln {
color: #333333;
}

@media screen {
.str {
color: #dd1144;
}

.kwd {
color: #333333;
}

.com {
color: #999988;
}

.typ {
color: #445588;
}

.lit {
color: #445588;
}

.pun {
color: #333333;
}

.opn {
color: #333333;
}

.clo {
color: #333333;
}

.tag {
color: navy;
}

.atn {
color: teal;
}

.atv {
color: #dd1144;
}

.dec {
color: #333333;
}

.var {
color: teal;
}

.fun {
color: #990000;
}
}
@media print, projection {
.str {
color: #006600;
}

.kwd {
color: #006;
font-weight: bold;
}

.com {
color: #600;
font-style: italic;
}

.typ {
color: #404;
font-weight: bold;
}

.lit {
color: #004444;
}

.pun, .opn, .clo {
color: #444400;
}

.tag {
color: #006;
font-weight: bold;
}

.atn {
color: #440044;
}

.atv {
color: #006600;
}
}
/* Specify class=linenums on a pre to get line numbering */
ol.linenums {
margin-top: 0;
margin-bottom: 0;
}

/* IE indents via margin-left */
li.L0,
li.L1,
li.L2,
li.L3,
li.L4,
li.L5,
li.L6,
li.L7,
li.L8,
li.L9 {
/* */
}

/* Alternate shading for lines */
li.L1,
li.L3,
li.L5,
li.L7,
li.L9 {
/* */
}

/* My additional styles */

/*li.L0, li.L1, li.L2, li.L3,
li.L5, li.L6, li.L7, li.L8
{ list-style-type: decimal !important }*/

.prettyprint li {
margin-bottom: .3rem;
}
Loading

0 comments on commit 855fdf2

Please sign in to comment.