Skip to content

Commit

Permalink
adding quick and dirty favicons and touch icons for iOS
Browse files Browse the repository at this point in the history
  • Loading branch information
mdo committed Sep 13, 2011
1 parent bc2ae90 commit 1d50fa7
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 6 deletions.
5 changes: 4 additions & 1 deletion bootstrap-1.3.0.css
Expand Up @@ -6,7 +6,7 @@
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world @twitter by @mdo and @fat.
* Date: Mon Sep 12 22:15:45 PDT 2011
* Date: Tue Sep 13 09:06:02 PDT 2011
*/
/* Reset.less
* Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
Expand Down Expand Up @@ -94,6 +94,9 @@ html {
a:focus {
outline: thin dotted;
}
a:hover, a:active {
outline: 0;
}
article,
aside,
details,
Expand Down
1 change: 1 addition & 0 deletions bootstrap-1.3.0.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion docs/assets/css/docs.css
Expand Up @@ -23,7 +23,6 @@ section > .row {
-------------------------------------------------- */
.jumbotron {
padding-top: 40px;
overflow: hidden;
}
.jumbotron .inner {
background: transparent url(../img/grid-18px.png) top center;
Expand Down
Binary file added docs/assets/ico/bootstrap-apple-114x114.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 docs/assets/ico/bootstrap-apple-57x57.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 docs/assets/ico/bootstrap-apple-72x72.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 docs/assets/ico/favicon.ico
Binary file not shown.
8 changes: 4 additions & 4 deletions docs/index.html
Expand Up @@ -27,10 +27,10 @@
<script src="assets/js/application.js"></script>

<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
<link rel="shortcut icon" type="image/x-icon" href="assets/ico/favicon.ico">
<link rel="apple-touch-icon" href="assets/ico/bootstrap-apple-57x57.png">
<link rel="apple-touch-icon" sizes="72x72" href="assets/ico/bootstrap-apple-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="assets/ico/bootstrap-apple-114x114.png">
</head>

<body>
Expand Down
5 changes: 5 additions & 0 deletions lib/reset.less
Expand Up @@ -30,6 +30,11 @@ html {
a:focus {
outline: thin dotted;
}
// Hover & Active
a:hover,
a:active {
outline: 0;
}

// Display in IE6-9 and FF3
// -------------------------
Expand Down

0 comments on commit 1d50fa7

Please sign in to comment.