Browse Source

remove masthead css

pull/249/head
connors 11 years ago
parent
commit
bcc86667c8
  1. 18
      components.html
  2. 80
      docs-assets/css/docs.css
  3. 67
      lib/sass/docs.scss

18
components.html

@ -4,18 +4,24 @@ title: Ratchet ~ Components
base_url: "../"
---
<!-- Docs masthead -->
<header class="docs-masthead">
<div class="docs-header">
<div class="container column-group">
<div class="column units-2">
<a class="icon icon-list" href="#"></a>
<a class="icon icon-download" href="#"></a>
<!-- <h1 class="logotype">R</h1> -->
<header class="docs-nav">
<a class="icon icon-list pull-right" href="/components" data-ignore="push"></a>
<a class="version" href="https://github.com/maker/ratchet">v2.0.0</a>
<h1 class="docs-title">Ratchet</h1>
</header>
</div>
</div>
<div class="docs-header-content">
<div class="column units-2">
<h2 class="section-title">Components</h2>
<p class="section-description">Design patterns that serve as basic building blocks</p>
</div>
</div>
</header>
</div>
<div class="platform-toggle">
<ul class="segmented-controller">
<li class="platform-switch selected" data-platform="">

80
docs-assets/css/docs.css

@ -860,70 +860,6 @@ body {
color: #fff;
}
.docs-masthead {
padding-top: 60px;
text-align: center;
background-color: #1eb0e9;
}
.docs-masthead .logotype {
display: inline-block;
width: 40px;
height: 40px;
padding: 10px;
margin-top: 0;
margin-bottom: 10px;
color: #fff;
font-size: 18px;
font-weight: normal;
line-height: 16px;
border: 2px solid #fff;
border-radius: 50px;
opacity: .7;
-webkit-transition: all 0.2s linear;
transition: all 0.2s linear;
}
.docs-masthead .section-title,
.docs-masthead .section-description {
margin-top: 0;
margin-bottom: 0;
font-weight: 300;
}
.docs-masthead .section-title {
color: #fff;
font-size: 45px;
}
.docs-masthead .section-description {
color: #fff;
font-size: 24px;
opacity: .7;
}
.docs-masthead .icon {
position: fixed;
color: #fff;
opacity: .7;
-webkit-transition: all 0.2s linear;
transition: all 0.2s linear;
}
.docs-masthead .icon:hover {
opacity: 1;
}
.docs-masthead .icon-download {
top: 11px;
right: 60px;
}
.docs-masthead .icon-list {
top: 15px;
right: 15px;
}
.docs-navigation {
float: right;
padding-top: 5px;
}
.docs-navigation .nav-item {
margin-left: 20px;
}
.platform-toggle {
padding-top: 20px;
padding-bottom: 70px;
@ -1027,18 +963,6 @@ body {
word-wrap: normal;
}
.notice-banner {
height: 0;
margin: 0;
padding: 0;
color: #333;
font-size: 16px;
text-align: center;
background-color: #fff9c4;
opacity: 0;
-moz-animation: shownotice 1s infinite;
}
.device {
font-family: "Helvetica Neue", Helvetica, sans-serif;
font-size: 17px;
@ -1101,10 +1025,6 @@ hr {
background-image: url("../img/iphone.png");
background-size: 100%;
background-repeat: no-repeat;
-webkit-animation-name: fadein;
animation-name: fadein;
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
.device.device-fixed {
position: fixed;

67
lib/sass/docs.scss

@ -266,73 +266,6 @@ body {
}
// Masthead
// --------------------------------------------------
.docs-masthead {
padding-top: 60px;
text-align: center;
background-color: #1eb0e9;
.logotype {
display: inline-block;
width: 40px;
height: 40px;
padding: 10px;
margin-top: 0;
margin-bottom: 10px;
color: #fff;
font-size: 18px;
font-weight: normal;
line-height: 16px;
border: 2px solid #fff;
border-radius: 50px;
opacity: .7;
@include transition(all .2s linear);
}
.section-title,
.section-description {
margin-top: 0;
margin-bottom: 0;
font-weight: 300;
}
.section-title {
color: #fff;
font-size: 45px;
}
.section-description {
color: #fff;
font-size: 24px;
opacity: .7;
}
.icon {
position: fixed;
color: #fff;
opacity: .7;
@include transition(all .2s linear);
&:hover {
opacity: 1;
}
}
.icon-download {
top: 11px;
right: 60px;
}
.icon-list {
top: 15px;
right: 15px;
}
}
.docs-navigation {
float: right;
padding-top: 5px;
.nav-item {
margin-left: 20px;
}
}
// Platform toggle
// --------------------------------------------------

Loading…
Cancel
Save