Skip to content

Commit be97909

Browse files
committed
First commit
0 parents  commit be97909

File tree

267 files changed

+48225
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

267 files changed

+48225
-0
lines changed

.bowerrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"directory": "app/assets/vendors"
3+
}

.editorconfig

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# editorconfig.org
4+
5+
root = true
6+
7+
8+
[*]
9+
10+
# change these settings to your own preference
11+
indent_style = space
12+
indent_size = 2
13+
14+
# we recommend you to keep these unchanged
15+
end_of_line = lf
16+
charset = utf-8
17+
trim_trailing_whitespace = true
18+
insert_final_newline = true
19+
20+
[*.md]
21+
trim_trailing_whitespace = false
22+
23+
[{package,bower}.json]
24+
indent_style = space
25+
indent_size = 2

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.node_modules
2+
.idea

assets/css/main.css

+140
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
body {
2+
font: 14px/1.6 Lato, "PingFang SC", "Microsoft YaHei", sans-serif;
3+
}
4+
5+
hr.half-rule {
6+
margin: 40px auto;
7+
width: 100px;
8+
}
9+
10+
11+
header {
12+
background: rgba(0,0,0,0.7) no-repeat 0 50%;
13+
background-size: cover;
14+
}
15+
16+
/* ========================================
17+
navbar
18+
======================================== */
19+
.navbar {
20+
margin-bottom: 0;
21+
background: none;
22+
border-color: transparent;
23+
width: 100%;
24+
transition: all 0.5s;
25+
}
26+
27+
.navbar-inverse .navbar-brand { color: white; }
28+
29+
.navbar-inverse .navbar-nav>li>a {
30+
color: white;
31+
}
32+
33+
.navbar.affix-top .navbar-nav>li>a:focus:after,
34+
.navbar.affix-top .navbar-nav>li>a:hover:after,
35+
.navbar.affix-top .navbar-nav>.active>a:after,
36+
.navbar.affix-top .navbar-nav>.active>a:focus:after,
37+
.navbar.affix-top .navbar-nav>.active>a:hover:after {
38+
content: " ";
39+
position: absolute;
40+
bottom: 6px;
41+
left: 50%;
42+
margin-left: -3px;
43+
width: 6px;
44+
height: 6px;
45+
background: white;
46+
border-radius: 50%;
47+
}
48+
49+
.navbar.affix-top .navbar-nav>.active>a,
50+
.navbar.affix-top .navbar-nav>.active>a:focus,
51+
.navbar.affix-top .navbar-nav>.active>a:hover {
52+
background-color: transparent;
53+
}
54+
55+
56+
57+
.navbar.affix {
58+
color: #333;
59+
background: #222;
60+
border-color: #080808;
61+
}
62+
63+
.navbar-inverse.affix .navbar-nav>li>a {
64+
color: #9d9d9d;
65+
}
66+
67+
68+
/* ========================================
69+
doc categories
70+
======================================== */
71+
.hero { height: 400px; }
72+
73+
.hero-headline {
74+
padding-top: 120px;
75+
color: white;
76+
text-align: center;
77+
font-size: 48px;
78+
text-shadow: 0 2px 2px rgba(0,0,0,.2);
79+
}
80+
81+
.hero-description {
82+
color: white;
83+
font-size: 20px;
84+
text-shadow: 0 2px 2px rgba(0,0,0,.2);
85+
}
86+
87+
.hero-buttons {
88+
margin-top: 50px;
89+
text-align: center;
90+
}
91+
.hero-buttons .btn {
92+
margin-left: 10px;
93+
padding: 8px 40px;
94+
color: white;
95+
background: transparent;
96+
border: 2px solid white;
97+
transition: all 0.3s;
98+
}
99+
100+
.hero-buttons .btn:hover {
101+
color: black;
102+
background: white;
103+
}
104+
105+
106+
/* ========================================
107+
feature-schemes
108+
======================================== */
109+
.features { margin: 100px 0; }
110+
111+
.feature-multiple-schemes { border-bottom: 1px solid #ccc; }
112+
113+
114+
/* ========================================
115+
doc categories
116+
======================================== */
117+
.doc-categories { margin: 100px 0; }
118+
119+
.doc-categories h4,
120+
.doc-categories p { margin: 20px; }
121+
122+
.doc-categories h4 a { color: #555; }
123+
.doc-categories h4 a:hover { color: #000; }
124+
125+
.doc-categories p { color: #999; }
126+
127+
.doc-categories .fa {
128+
margin-bottom: 20px;
129+
font-size: 30px;
130+
}
131+
132+
133+
/* ========================================
134+
Footer
135+
======================================== */
136+
.footer { padding: 80px 0 20px; }
137+
.footer .fa {
138+
margin: 0 5px;
139+
font-size: 10px;
140+
}

assets/img/NextSchemes3.png

61.9 KB
Loading

assets/img/banner-1.jpg

348 KB
Loading

assets/img/banner-2.jpg

1.05 MB
Loading

assets/img/banner-3.jpg

3.79 MB
Loading

assets/img/banner-4.jpg

206 KB
Loading

assets/img/banner-5.jpg

286 KB
Loading

assets/img/banner-6.jpg

360 KB
Loading

assets/img/banner-7.jpg

215 KB
Loading

assets/img/banner-8.jpg

401 KB
Loading

assets/img/banner-9.jpg

276 KB
Loading

assets/js/main.js

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
$(document).ready(function () {
2+
3+
$('#nav').affix({
4+
offset: {
5+
top: $('header').height()
6+
}
7+
});
8+
9+
$('header').css('background-image', getHeaderBackgroundImage());
10+
11+
function getHeaderBackgroundImage () {
12+
var r = 1 + parseInt(Math.random() * 9, 10);
13+
return 'url("/assets/img/banner-' + r + '.jpg")';
14+
}
15+
});

assets/vendors/bootstrap/.bower.json

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"name": "bootstrap",
3+
"description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
4+
"keywords": [
5+
"css",
6+
"js",
7+
"less",
8+
"mobile-first",
9+
"responsive",
10+
"front-end",
11+
"framework",
12+
"web"
13+
],
14+
"homepage": "http://getbootstrap.com",
15+
"license": "MIT",
16+
"moduleType": "globals",
17+
"main": [
18+
"less/bootstrap.less",
19+
"dist/js/bootstrap.js"
20+
],
21+
"ignore": [
22+
"/.*",
23+
"_config.yml",
24+
"CNAME",
25+
"composer.json",
26+
"CONTRIBUTING.md",
27+
"docs",
28+
"js/tests",
29+
"test-infra"
30+
],
31+
"dependencies": {
32+
"jquery": ">= 1.9.1"
33+
},
34+
"version": "3.3.5",
35+
"_release": "3.3.5",
36+
"_resolution": {
37+
"type": "version",
38+
"tag": "v3.3.5",
39+
"commit": "16b48259a62f576e52c903c476bd42b90ab22482"
40+
},
41+
"_source": "git://github.com/twbs/bootstrap.git",
42+
"_target": "~3.3.5",
43+
"_originalSource": "bootstrap",
44+
"_direct": true
45+
}

0 commit comments

Comments
 (0)