Skip to content

Commit be45857

Browse files
committed
initial commit
0 parents  commit be45857

22 files changed

+56638
-0
lines changed

.gitattributes

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Custom for Visual Studio
5+
*.cs diff=csharp
6+
*.sln merge=union
7+
*.csproj merge=union
8+
*.vbproj merge=union
9+
*.fsproj merge=union
10+
*.dbproj merge=union
11+
12+
# Standard to msysgit
13+
*.doc diff=astextplain
14+
*.DOC diff=astextplain
15+
*.docx diff=astextplain
16+
*.DOCX diff=astextplain
17+
*.dot diff=astextplain
18+
*.DOT diff=astextplain
19+
*.pdf diff=astextplain
20+
*.PDF diff=astextplain
21+
*.rtf diff=astextplain
22+
*.RTF diff=astextplain

.gitignore

+163
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,163 @@
1+
#################
2+
## Eclipse
3+
#################
4+
5+
*.pydevproject
6+
.project
7+
.metadata
8+
bin/
9+
tmp/
10+
*.tmp
11+
*.bak
12+
*.swp
13+
*~.nib
14+
local.properties
15+
.classpath
16+
.settings/
17+
.loadpath
18+
19+
# External tool builders
20+
.externalToolBuilders/
21+
22+
# Locally stored "Eclipse launch configurations"
23+
*.launch
24+
25+
# CDT-specific
26+
.cproject
27+
28+
# PDT-specific
29+
.buildpath
30+
31+
32+
#################
33+
## Visual Studio
34+
#################
35+
36+
## Ignore Visual Studio temporary files, build results, and
37+
## files generated by popular Visual Studio add-ons.
38+
39+
# User-specific files
40+
*.suo
41+
*.user
42+
*.sln.docstates
43+
44+
# Build results
45+
[Dd]ebug/
46+
[Rr]elease/
47+
*_i.c
48+
*_p.c
49+
*.ilk
50+
*.meta
51+
*.obj
52+
*.pch
53+
*.pdb
54+
*.pgc
55+
*.pgd
56+
*.rsp
57+
*.sbr
58+
*.tlb
59+
*.tli
60+
*.tlh
61+
*.tmp
62+
*.vspscc
63+
.builds
64+
*.dotCover
65+
66+
## TODO: If you have NuGet Package Restore enabled, uncomment this
67+
#packages/
68+
69+
# Visual C++ cache files
70+
ipch/
71+
*.aps
72+
*.ncb
73+
*.opensdf
74+
*.sdf
75+
76+
# Visual Studio profiler
77+
*.psess
78+
*.vsp
79+
80+
# ReSharper is a .NET coding add-in
81+
_ReSharper*
82+
83+
# Installshield output folder
84+
[Ee]xpress
85+
86+
# DocProject is a documentation generator add-in
87+
DocProject/buildhelp/
88+
DocProject/Help/*.HxT
89+
DocProject/Help/*.HxC
90+
DocProject/Help/*.hhc
91+
DocProject/Help/*.hhk
92+
DocProject/Help/*.hhp
93+
DocProject/Help/Html2
94+
DocProject/Help/html
95+
96+
# Click-Once directory
97+
publish
98+
99+
# Others
100+
[Bb]in
101+
[Oo]bj
102+
sql
103+
TestResults
104+
*.Cache
105+
ClientBin
106+
stylecop.*
107+
~$*
108+
*.dbmdl
109+
Generated_Code #added for RIA/Silverlight projects
110+
111+
# Backup & report files from converting an old project file to a newer
112+
# Visual Studio version. Backup files are not needed, because we have git ;-)
113+
_UpgradeReport_Files/
114+
Backup*/
115+
UpgradeLog*.XML
116+
117+
118+
119+
############
120+
## Windows
121+
############
122+
123+
# Windows image file caches
124+
Thumbs.db
125+
126+
# Folder config file
127+
Desktop.ini
128+
129+
130+
#############
131+
## Python
132+
#############
133+
134+
*.py[co]
135+
136+
# Packages
137+
*.egg
138+
*.egg-info
139+
dist
140+
build
141+
eggs
142+
parts
143+
bin
144+
var
145+
sdist
146+
develop-eggs
147+
.installed.cfg
148+
149+
# Installer logs
150+
pip-log.txt
151+
152+
# Unit test / coverage reports
153+
.coverage
154+
.tox
155+
156+
#Translations
157+
*.mo
158+
159+
#Mr Developer
160+
.mr.developer.cfg
161+
162+
# Mac crap
163+
.DS_Store

docs/example.html

+91
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<title>Metro Bootstrap</title>
5+
<link rel="stylesheet/less" type="text/css" href="../less/bootstrap.less">
6+
<script src="js/less-1.3.0.min.js" type="text/javascript"></script>
7+
<style>
8+
9+
body {
10+
font-size: 1em;
11+
}
12+
13+
p { margin: 0 7px 0; }
14+
15+
.grid-unit {
16+
border-width: 1px;
17+
border-style: solid;
18+
margin: 5px 5px 0 0;
19+
float: left;
20+
width: 300px;
21+
min-height: 200px;
22+
}
23+
24+
.grid-unit-title {
25+
color: rgba(37, 187, 196, 1.0);
26+
padding: 10px;
27+
margin: 0;
28+
background-color: #000;
29+
}
30+
31+
.grid-unit-content
32+
{
33+
padding: 10px;
34+
}
35+
36+
</style>
37+
</head>
38+
39+
<body style="padding-top: 50px; padding-left: 50px;">
40+
41+
<div class="grid-unit">
42+
<h3 class="grid-unit-title">
43+
Headings
44+
</h3>
45+
<div class="grid-unit-content">
46+
<h1>heading 1</h1>
47+
<h2>heading 2</h2>
48+
<h3>heading 3</h3>
49+
<h4>heading 4</h4>
50+
<h5>heading 5</h5>
51+
</div>
52+
</div>
53+
54+
<div class="grid-unit">
55+
<h3 class="grid-unit-title">
56+
Body text
57+
</h3>
58+
<div class="grid-unit-content">
59+
<p>Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nullam id dolor id nibh ultricies vehicula.</p>
60+
</div>
61+
</div>
62+
63+
<div class="grid-unit">
64+
<h3 class="grid-unit-title">
65+
Links
66+
</h3>
67+
<div class="grid-unit-content">
68+
<p>
69+
<a href="#">Rested link</a>
70+
</p>
71+
<p>
72+
<a href="#" style="color: #329AA3;">Hovered link</a>
73+
</p>
74+
</div>
75+
</div>
76+
77+
<div class="grid-unit">
78+
<h3 class="grid-unit-title">
79+
Buttons
80+
</h3>
81+
<div class="grid-unit-content">
82+
<input type="button" value="standard" />
83+
<input type="button" value="hovered" style="background-color: rgba(205, 205, 205, 0.82); border-color: rgba(164, 164, 164, 0.45);" />
84+
<input type="button" value="active" style="background-clip: border-box; background-color: rgb(0, 0, 0); border-color: transparent;
85+
color: rgb(255, 255, 255);" />
86+
<input type="button" value="disabled" disabled />
87+
</div>
88+
</div>
89+
90+
</body>
91+
</html>

docs/js/less-1.3.0.min.js

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

less/bootstrap.less

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
@import "reset.less";
3+
@import "variables.less";
4+
@import "mixins.less";
5+
@import "scaffolding.less";
6+
@import "layouts.less";
7+

0 commit comments

Comments
 (0)