Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
iissnan committed Nov 15, 2015
0 parents commit be97909
Show file tree
Hide file tree
Showing 267 changed files with 48,225 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .bowerrc
@@ -0,0 +1,3 @@
{
"directory": "app/assets/vendors"
}
25 changes: 25 additions & 0 deletions .editorconfig
@@ -0,0 +1,25 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org

root = true


[*]

# change these settings to your own preference
indent_style = space
indent_size = 2

# we recommend you to keep these unchanged
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

[{package,bower}.json]
indent_style = space
indent_size = 2
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
.node_modules
.idea
140 changes: 140 additions & 0 deletions assets/css/main.css
@@ -0,0 +1,140 @@
body {
font: 14px/1.6 Lato, "PingFang SC", "Microsoft YaHei", sans-serif;
}

hr.half-rule {
margin: 40px auto;
width: 100px;
}


header {
background: rgba(0,0,0,0.7) no-repeat 0 50%;
background-size: cover;
}

/* ========================================
navbar
======================================== */
.navbar {
margin-bottom: 0;
background: none;
border-color: transparent;
width: 100%;
transition: all 0.5s;
}

.navbar-inverse .navbar-brand { color: white; }

.navbar-inverse .navbar-nav>li>a {
color: white;
}

.navbar.affix-top .navbar-nav>li>a:focus:after,
.navbar.affix-top .navbar-nav>li>a:hover:after,
.navbar.affix-top .navbar-nav>.active>a:after,
.navbar.affix-top .navbar-nav>.active>a:focus:after,
.navbar.affix-top .navbar-nav>.active>a:hover:after {
content: " ";
position: absolute;
bottom: 6px;
left: 50%;
margin-left: -3px;
width: 6px;
height: 6px;
background: white;
border-radius: 50%;
}

.navbar.affix-top .navbar-nav>.active>a,
.navbar.affix-top .navbar-nav>.active>a:focus,
.navbar.affix-top .navbar-nav>.active>a:hover {
background-color: transparent;
}



.navbar.affix {
color: #333;
background: #222;
border-color: #080808;
}

.navbar-inverse.affix .navbar-nav>li>a {
color: #9d9d9d;
}


/* ========================================
doc categories
======================================== */
.hero { height: 400px; }

.hero-headline {
padding-top: 120px;
color: white;
text-align: center;
font-size: 48px;
text-shadow: 0 2px 2px rgba(0,0,0,.2);
}

.hero-description {
color: white;
font-size: 20px;
text-shadow: 0 2px 2px rgba(0,0,0,.2);
}

.hero-buttons {
margin-top: 50px;
text-align: center;
}
.hero-buttons .btn {
margin-left: 10px;
padding: 8px 40px;
color: white;
background: transparent;
border: 2px solid white;
transition: all 0.3s;
}

.hero-buttons .btn:hover {
color: black;
background: white;
}


/* ========================================
feature-schemes
======================================== */
.features { margin: 100px 0; }

.feature-multiple-schemes { border-bottom: 1px solid #ccc; }


/* ========================================
doc categories
======================================== */
.doc-categories { margin: 100px 0; }

.doc-categories h4,
.doc-categories p { margin: 20px; }

.doc-categories h4 a { color: #555; }
.doc-categories h4 a:hover { color: #000; }

.doc-categories p { color: #999; }

.doc-categories .fa {
margin-bottom: 20px;
font-size: 30px;
}


/* ========================================
Footer
======================================== */
.footer { padding: 80px 0 20px; }
.footer .fa {
margin: 0 5px;
font-size: 10px;
}
Binary file added assets/img/NextSchemes3.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/banner-1.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/banner-2.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/banner-3.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/banner-4.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/banner-5.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/banner-6.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/banner-7.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/banner-8.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/banner-9.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions assets/js/main.js
@@ -0,0 +1,15 @@
$(document).ready(function () {

$('#nav').affix({
offset: {
top: $('header').height()
}
});

$('header').css('background-image', getHeaderBackgroundImage());

function getHeaderBackgroundImage () {
var r = 1 + parseInt(Math.random() * 9, 10);
return 'url("/assets/img/banner-' + r + '.jpg")';
}
});
45 changes: 45 additions & 0 deletions assets/vendors/bootstrap/.bower.json
@@ -0,0 +1,45 @@
{
"name": "bootstrap",
"description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
"keywords": [
"css",
"js",
"less",
"mobile-first",
"responsive",
"front-end",
"framework",
"web"
],
"homepage": "http://getbootstrap.com",
"license": "MIT",
"moduleType": "globals",
"main": [
"less/bootstrap.less",
"dist/js/bootstrap.js"
],
"ignore": [
"/.*",
"_config.yml",
"CNAME",
"composer.json",
"CONTRIBUTING.md",
"docs",
"js/tests",
"test-infra"
],
"dependencies": {
"jquery": ">= 1.9.1"
},
"version": "3.3.5",
"_release": "3.3.5",
"_resolution": {
"type": "version",
"tag": "v3.3.5",
"commit": "16b48259a62f576e52c903c476bd42b90ab22482"
},
"_source": "git://github.com/twbs/bootstrap.git",
"_target": "~3.3.5",
"_originalSource": "bootstrap",
"_direct": true
}

0 comments on commit be97909

Please sign in to comment.