Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
7ab682091d | |||
093732e102 | |||
c103965d73 | |||
6b3162ee3f | |||
1fb5487ce3 |
47
404.html
47
404.html
@ -1,47 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
|
|
||||||
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
|
|
||||||
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
|
|
||||||
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
|
|
||||||
<head>
|
|
||||||
|
|
||||||
<!-- Basic Page Needs
|
|
||||||
================================================== -->
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<title>Your Page Title Here :)</title>
|
|
||||||
<meta name="description" content="">
|
|
||||||
<meta name="author" content="">
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Mobile Specific Metas
|
|
||||||
================================================== -->
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
||||||
|
|
||||||
<!-- CSS
|
|
||||||
================================================== -->
|
|
||||||
<link rel="stylesheet" href="stylesheets/base.css">
|
|
||||||
<link rel="stylesheet" href="stylesheets/skeleton.css">
|
|
||||||
<link rel="stylesheet" href="stylesheets/layout.css">
|
|
||||||
|
|
||||||
<!-- Favicons
|
|
||||||
================================================== -->
|
|
||||||
<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">
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<!-- Primary Page Layout
|
|
||||||
================================================== -->
|
|
||||||
<div class="container">
|
|
||||||
<h1 style="margin-top: 100px; text-align:center">Sorry. Couldn't Find That Page!</h1>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- End Document
|
|
||||||
================================================== -->
|
|
||||||
</body>
|
|
||||||
</html>
|
|
10
index.html
10
index.html
@ -46,12 +46,12 @@
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="sixteen columns">
|
<div class="sixteen columns">
|
||||||
<h1 class="remove-bottom" style="margin-top: 40px">Skeleton</h1>
|
<h1 class="remove-bottom" style="margin-top: 40px">Skeleton</h1>
|
||||||
<h5>Version 1.1</h5>
|
<h5>Version 1.2</h5>
|
||||||
<hr />
|
<hr />
|
||||||
</div>
|
</div>
|
||||||
<div class="one-third column">
|
<div class="one-third column">
|
||||||
<h3>About Skeleton?</h3>
|
<h3>About Skeleton?</h3>
|
||||||
<p>Skeleton is a small collection of well-organized CSS & JS files that can help you rapidly develop sites that look beautiful at any size, be it a 17" laptop screen or an iPhone. It's based on a responsive grid, but also provides very basic CSS for typography, buttons, tabs, forms and media queries. Go ahead, resize this super basic page to see the grid in action.</p>
|
<p>Skeleton is a small collection of well-organized CSS files that can help you rapidly develop sites that look beautiful at any size, be it a 17" laptop screen or an iPhone. It's based on a responsive grid, but also provides very basic CSS for typography, buttons, forms and media queries. Go ahead, resize this super basic page to see the grid in action.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="one-third column">
|
<div class="one-third column">
|
||||||
<h3>Three Core Principles</h3>
|
<h3>Three Core Principles</h3>
|
||||||
@ -70,12 +70,6 @@
|
|||||||
</div><!-- container -->
|
</div><!-- container -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- JS
|
|
||||||
================================================== -->
|
|
||||||
<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
|
|
||||||
<script src="javascripts/tabs.js"></script>
|
|
||||||
|
|
||||||
<!-- End Document
|
<!-- End Document
|
||||||
================================================== -->
|
================================================== -->
|
||||||
</body>
|
</body>
|
||||||
|
@ -1,29 +0,0 @@
|
|||||||
|
|
||||||
/**
|
|
||||||
* Skeleton V1.1
|
|
||||||
* Copyright 2011, Dave Gamache
|
|
||||||
* www.getskeleton.com
|
|
||||||
* Free to use under the MIT license.
|
|
||||||
* http://www.opensource.org/licenses/mit-license.php
|
|
||||||
* 8/17/2011
|
|
||||||
*/
|
|
||||||
|
|
||||||
(function ($) {
|
|
||||||
// hash change handler
|
|
||||||
function hashchange () {
|
|
||||||
var hash = window.location.hash
|
|
||||||
, el = $('ul.tabs [href*="' + hash + '"]')
|
|
||||||
, content = $(hash)
|
|
||||||
|
|
||||||
if (el.length && !el.hasClass('active') && content.length) {
|
|
||||||
el.closest('.tabs').find('.active').removeClass('active');
|
|
||||||
el.addClass('active');
|
|
||||||
content.show().addClass('active').siblings().hide().removeClass('active');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// listen on event and fire right away
|
|
||||||
$(window).on('hashchange.skeleton', hashchange);
|
|
||||||
hashchange();
|
|
||||||
$(hashchange);
|
|
||||||
})(jQuery);
|
|
@ -1,5 +0,0 @@
|
|||||||
# www.robotstxt.org/
|
|
||||||
# www.google.com/support/webmasters/bin/answer.py?hl=en&answer=156449
|
|
||||||
|
|
||||||
User-agent: *
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
|||||||
/*
|
/*
|
||||||
* Skeleton V1.1
|
* Skeleton V1.2
|
||||||
* Copyright 2011, Dave Gamache
|
* Copyright 2011, Dave Gamache
|
||||||
* www.getskeleton.com
|
* www.getskeleton.com
|
||||||
* Free to use under the MIT license.
|
* Free to use under the MIT license.
|
||||||
* http://www.opensource.org/licenses/mit-license.php
|
* http://www.opensource.org/licenses/mit-license.php
|
||||||
* 8/17/2011
|
* 6/20/2012
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
@ -18,7 +18,6 @@
|
|||||||
#Lists
|
#Lists
|
||||||
#Images
|
#Images
|
||||||
#Buttons
|
#Buttons
|
||||||
#Tabs
|
|
||||||
#Forms
|
#Forms
|
||||||
#Misc */
|
#Misc */
|
||||||
|
|
||||||
@ -207,78 +206,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* #Tabs (activate in tabs.js)
|
|
||||||
================================================== */
|
|
||||||
ul.tabs {
|
|
||||||
display: block;
|
|
||||||
margin: 0 0 20px 0;
|
|
||||||
padding: 0;
|
|
||||||
border-bottom: solid 1px #ddd; }
|
|
||||||
ul.tabs li {
|
|
||||||
display: block;
|
|
||||||
width: auto;
|
|
||||||
height: 30px;
|
|
||||||
padding: 0;
|
|
||||||
float: left;
|
|
||||||
margin-bottom: 0; }
|
|
||||||
ul.tabs li a {
|
|
||||||
display: block;
|
|
||||||
text-decoration: none;
|
|
||||||
width: auto;
|
|
||||||
height: 29px;
|
|
||||||
padding: 0px 20px;
|
|
||||||
line-height: 30px;
|
|
||||||
border: solid 1px #ddd;
|
|
||||||
border-width: 1px 1px 0 0;
|
|
||||||
margin: 0;
|
|
||||||
background: #f5f5f5;
|
|
||||||
font-size: 13px; }
|
|
||||||
ul.tabs li a.active {
|
|
||||||
background: #fff;
|
|
||||||
height: 30px;
|
|
||||||
position: relative;
|
|
||||||
top: -4px;
|
|
||||||
padding-top: 4px;
|
|
||||||
border-left-width: 1px;
|
|
||||||
margin: 0 0 0 -1px;
|
|
||||||
color: #111;
|
|
||||||
-moz-border-radius-topleft: 2px;
|
|
||||||
-webkit-border-top-left-radius: 2px;
|
|
||||||
border-top-left-radius: 2px;
|
|
||||||
-moz-border-radius-topright: 2px;
|
|
||||||
-webkit-border-top-right-radius: 2px;
|
|
||||||
border-top-right-radius: 2px; }
|
|
||||||
ul.tabs li:first-child a.active {
|
|
||||||
margin-left: 0; }
|
|
||||||
ul.tabs li:first-child a {
|
|
||||||
border-width: 1px 1px 0 1px;
|
|
||||||
-moz-border-radius-topleft: 2px;
|
|
||||||
-webkit-border-top-left-radius: 2px;
|
|
||||||
border-top-left-radius: 2px; }
|
|
||||||
ul.tabs li:last-child a {
|
|
||||||
-moz-border-radius-topright: 2px;
|
|
||||||
-webkit-border-top-right-radius: 2px;
|
|
||||||
border-top-right-radius: 2px; }
|
|
||||||
|
|
||||||
ul.tabs-content { margin: 0; display: block; }
|
|
||||||
ul.tabs-content > li { display:none; }
|
|
||||||
ul.tabs-content > li.active { display: block; }
|
|
||||||
|
|
||||||
/* Clearfixing tabs for beautiful stacking */
|
|
||||||
ul.tabs:before,
|
|
||||||
ul.tabs:after {
|
|
||||||
content: '\0020';
|
|
||||||
display: block;
|
|
||||||
overflow: hidden;
|
|
||||||
visibility: hidden;
|
|
||||||
width: 0;
|
|
||||||
height: 0; }
|
|
||||||
ul.tabs:after {
|
|
||||||
clear: both; }
|
|
||||||
ul.tabs {
|
|
||||||
zoom: 1; }
|
|
||||||
|
|
||||||
|
|
||||||
/* #Forms
|
/* #Forms
|
||||||
================================================== */
|
================================================== */
|
||||||
|
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
/*
|
/*
|
||||||
* Skeleton V1.1
|
* Skeleton V1.2
|
||||||
* Copyright 2011, Dave Gamache
|
* Copyright 2011, Dave Gamache
|
||||||
* www.getskeleton.com
|
* www.getskeleton.com
|
||||||
* Free to use under the MIT license.
|
* Free to use under the MIT license.
|
||||||
* http://www.opensource.org/licenses/mit-license.php
|
* http://www.opensource.org/licenses/mit-license.php
|
||||||
* 8/17/2011
|
* 6/20/2012
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Table of Content
|
/* Table of Content
|
||||||
|
4
stylesheets/skeleton.css
vendored
4
stylesheets/skeleton.css
vendored
@ -1,10 +1,10 @@
|
|||||||
/*
|
/*
|
||||||
* Skeleton V1.1
|
* Skeleton V1.2
|
||||||
* Copyright 2011, Dave Gamache
|
* Copyright 2011, Dave Gamache
|
||||||
* www.getskeleton.com
|
* www.getskeleton.com
|
||||||
* Free to use under the MIT license.
|
* Free to use under the MIT license.
|
||||||
* http://www.opensource.org/licenses/mit-license.php
|
* http://www.opensource.org/licenses/mit-license.php
|
||||||
* 8/17/2011
|
* 6/20/2012
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user