Skip to content

Commit d6b2fc4

Browse files
committed
adding official release of bootstrap
1 parent 7c4f55e commit d6b2fc4

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ module.exports = function (grunt) {
210210
dest: '.tmp/',
211211
src: [
212212
'styles/{,*/}*.css',
213-
'bower_components/boostrap/dist/css/bootstrap.min.css'
213+
'bower_components/bootstrap/dist/css/bootstrap.min.css'
214214
]
215215
},
216216
files: [

app/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<meta name="description" content="A mobile friendly VIM cheat sheet">
88
<meta name="viewport" content="width=device-width, initial-scale=1.0">
99
<!-- build:css({.tmp,app}) styles/main.css -->
10-
<link rel="stylesheet" href="bower_components/boostrap/dist/css/bootstrap.min.css">
10+
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
1111
<link rel="stylesheet" href="styles/main.css">
1212
<!-- endbuild -->
1313
<!-- build:js scripts/vendor/modernizr.js -->

app/styles/main.css

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ h2 {
2626

2727
ul {
2828
padding: 0;
29-
padding-left: 5px;
3029
}
3130

3231
li {
@@ -38,9 +37,17 @@ li {
3837
}
3938

4039
#footer {
40+
margin-top: 15px;
4141
text-align: center;
4242
}
4343

4444
kbd {
45+
font-family: monospace,serif;
46+
font-size: 1em;
47+
color: #333;
48+
background-color: #fafafa;
49+
border-radius: 0;
50+
box-shadow: none;
4551
font-weight: bold;
52+
padding: 0;
4653
}

bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
"name": "vim-cheat-sheet",
33
"version": "0.0.0",
44
"dependencies": {
5-
"boostrap": "git@github.com:twbs/bootstrap.git#3.0.0-rc1",
65
"modernizr": "~2.6.2",
7-
"jquery": "~1.9.1"
6+
"jquery": "~1.9.1",
7+
"bootstrap": "~3.1.0"
88
},
99
"devDependencies": {}
1010
}

0 commit comments

Comments
 (0)