Browse Source

just messing with a few things

pull/249/head
connors 11 years ago
parent
commit
edf1ff635e
  1. 2
      _includes/header.html
  2. 4
      components.html
  3. 7
      docs-assets/css/docs.css
  4. 2
      index.html
  5. 11
      lib/sass/docs.scss

2
_includes/header.html

@ -8,7 +8,7 @@
<meta name="apple-mobile-web-app-status-bar-style" content="black"> <meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="stylesheet" href="{{ page.base_url }}dist/ratchet.css"> <link rel="stylesheet" href="{{ page.base_url }}dist/ratchet.css">
<!-- <link rel="stylesheet" href="{{ page.base_url }}dist/ios-theme.css"> --> <link rel="stylesheet" href="{{ page.base_url }}dist/ios-theme.css">
<link rel="stylesheet" href="{{ page.base_url }}docs-assets/css/docs.css"> <link rel="stylesheet" href="{{ page.base_url }}docs-assets/css/docs.css">
<link rel="stylesheet" href="{{ page.base_url }}docs-assets/css/pygments.css"> <link rel="stylesheet" href="{{ page.base_url }}docs-assets/css/pygments.css">
<!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]--> <!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->

4
components.html

@ -24,10 +24,10 @@ base_url: "../"
<div class="platform-toggle"> <div class="platform-toggle">
<ul class="segmented-controller"> <ul class="segmented-controller">
<li class="selected"> <li>
<a>Base</a> <a>Base</a>
</li> </li>
<li> <li class="selected">
<a>iOS</a> <a>iOS</a>
</li> </li>
<li> <li>

7
docs-assets/css/docs.css

@ -121,7 +121,6 @@ h1, h2, h3, h4, h5, h6 {
} }
.docs-masthead .icon { .docs-masthead .icon {
position: fixed; position: fixed;
top: 15px;
color: #fff; color: #fff;
opacity: .7; opacity: .7;
-webkit-transition: all 0.2s linear; -webkit-transition: all 0.2s linear;
@ -131,9 +130,11 @@ h1, h2, h3, h4, h5, h6 {
opacity: 1; opacity: 1;
} }
.docs-masthead .icon-download { .docs-masthead .icon-download {
left: 15px; top: 11px;
right: 60px;
} }
.docs-masthead .icon-list { .docs-masthead .icon-list {
top: 15px;
right: 15px; right: 15px;
} }
@ -299,7 +300,7 @@ hr {
.iphone .iphone-content { .iphone .iphone-content {
position: absolute; position: absolute;
top: 118px; top: 117px;
left: 37px; left: 37px;
width: 320px; width: 320px;
height: 568px; height: 568px;

2
index.html

@ -10,7 +10,7 @@ base_url: "./"
<div class="column-group"> <div class="column-group">
<div class="docs-header column units-2"> <div class="docs-header column units-2">
<h1 class="docs-title">Ratchet</h1> <h1 class="docs-title">Ratchet</h1>
<p class="docs-subtitle">Prototype beautiful iPhone apps with simple HTML, CSS, and JS components.</p> <p class="docs-subtitle">Prototype mobile apps with simple HTML, CSS, and JS components.</p>
<a data-ignore="push" href="http://maker.github.com/ratchet/ratchet.zip" class="button button-primary button-filled button-block" onClick="_gaq.push(['_trackEvent', 'Downloads', 'V2.0']);">Download Ratchet</a> <a data-ignore="push" href="http://maker.github.com/ratchet/ratchet.zip" class="button button-primary button-filled button-block" onClick="_gaq.push(['_trackEvent', 'Downloads', 'V2.0']);">Download Ratchet</a>
</div> </div>
</div> </div>

11
lib/sass/docs.scss

@ -14,10 +14,6 @@ body {
-webkit-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;
} }
h1, h2, h3, h4, h5, h6 {
text-rendering: optimizeLegibility;
}
// Jumbotron // Jumbotron
// -------------------------------------------------- // --------------------------------------------------
@ -127,7 +123,6 @@ h1, h2, h3, h4, h5, h6 {
} }
.icon { .icon {
position: fixed; position: fixed;
top: 15px;
color: #fff; color: #fff;
opacity: .7; opacity: .7;
@include transition(all .2s linear); @include transition(all .2s linear);
@ -137,9 +132,11 @@ h1, h2, h3, h4, h5, h6 {
} }
} }
.icon-download { .icon-download {
left: 15px; top: 11px;
right: 60px;
} }
.icon-list { .icon-list {
top: 15px;
right: 15px; right: 15px;
} }
} }
@ -310,7 +307,7 @@ hr {
} }
.iphone .iphone-content { .iphone .iphone-content {
position: absolute; position: absolute;
top: 118px; top: 117px;
left: 37px; left: 37px;
width: 320px; width: 320px;
height: 568px; height: 568px;

Loading…
Cancel
Save