Skip to content

Commit

Permalink
Merge pull request #140 from picturepan2/hotfix/new-docs-fixes
Browse files Browse the repository at this point in the history
CHG: Fix GItHub site CSS
  • Loading branch information
picturepan2 authored Feb 24, 2017
2 parents 1f9f807 + 7cb9a15 commit 1f0f5df
Show file tree
Hide file tree
Showing 10 changed files with 2,893 additions and 3,063 deletions.
4 changes: 2 additions & 2 deletions docs/components.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="author" content="https://github.com/picturepan2/" />
<title>Components - Spectre.css</title>
<link rel="stylesheet" href="../dist/spectre.css" />
<link rel="stylesheet" href="css/docs.min.css" />
<link rel="stylesheet" href="css/spectre.css" />
<link rel="stylesheet" href="css/docs.css" />
<link rel="stylesheet" href="font/style.css" />
</head>
<body>
Expand Down
218 changes: 218 additions & 0 deletions docs/css/docs.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,218 @@
/*! Spectre.css Docs | MIT License | github.com/picturepan2/spectre */
/* Spectre version */
.version::after {
content: "0.2.1";
}
/* Spectre docs style */
.grid-hero {
margin-bottom: 4rem;
margin-top: 10rem;
}
.grid-hero h1 {
color: #555;
font-size: 3.2rem;
font-weight: 400;
}
.grid-hero h2 {
color: #666;
font-size: 1.8rem;
font-weight: 400;
line-height: 3rem;
margin-bottom: 5rem;
}
.grid-hero h2 u {
border-bottom: .2rem solid #666;
padding-bottom: .1rem;
text-decoration: none;
}
.grid-hero .card {
background: none;
border: 0;
color: #666;
padding: 1rem;
}
.grid-hero .card .card-title {
color: #5764c6;
font-size: 1.8rem;
margin-bottom: 0;
}
.bg-grey {
background-color: #f6f6f6;
border-radius: .2rem;
padding: 1rem .5rem;
}
.bg-dark {
background: #2d3354;
color: #fff;
padding: 1rem .5rem;
}
.bg-primary {
background: #5764c6;
color: #fff;
padding: 1rem .5rem;
}
.navbar-brand .icon {
font-size: 1.3333em;
line-height: .8em;
vertical-align: -20%;
}
.grid-header .btn {
color: #666;
}
.grid-header .btn:hover,
.grid-header .btn:focus,
.grid-header .btn:active {
color: #444;
opacity: .75;
}
.grid-header .navbar-brand {
color: #444;
}
.grid-footer {
color: #888;
margin-bottom: 3rem;
margin-top: 4rem;
}
.grid-footer a {
color: #666;
}
.empty .icon {
font-size: 4rem;
}
.code {
color: #666;
}
.code .com {
color: #adadad;
}
.code .tag {
color: #4452c0;
}
.code .atn {
color: #666;
}
.code .atv {
color: #e06870;
}
.docs-content .container {
padding: 2rem 1rem;
}
.docs-content header {
padding-top: 2rem;
}
.docs-content pre {
margin-bottom: 2rem;
margin-top: 2rem;
}
.docs-content .notes {
color: #666;
margin: 4rem 0;
}
.docs-content h3,
.docs-content h4,
.docs-content h5 {
margin-bottom: 2rem;
margin-top: 2rem;
}
.example-tile-icon {
-webkit-align-content: space-around;
align-content: space-around;
-webkit-align-items: center;
align-items: center;
background: #5764c6;
border-radius: .2rem;
color: #fff;
display: flex;
display: -ms-flexbox;
display: -webkit-flex;
-ms-flex-align: center;
-ms-flex-line-pack: distribute;
font-size: 2.4rem;
height: 4rem;
width: 4rem;
}
@media screen and (min-width: 481px) {
.docs-sidebar {
padding: 6rem 0;
}
.docs-sidebar .docs-nav {
position: relative;
}
@supports ((position: -webkit-sticky) or (position: sticky)) {
.docs-sidebar .docs-nav {
position: sticky;
position: -webkit-sticky;
top: 6rem;
}
.docs-sidebar .docs-nav .nav-item a:focus {
box-shadow: none;
}
}
}
.docs-nav-clear {
display: none;
}
.show-xs {
display: none !important;
}
@media screen and (max-width: 480px) {
.show-xs {
display: block !important;
}
.grid-hero h2 {
font-size: 1.8rem;
}
.grid-hero .card {
padding: 0;
}
.section-header {
padding: 0 .5rem;
position: fixed;
top: 0;
width: 100%;
z-index: 299;
}
.section-header .btn-link {
padding-left: .6rem;
padding-right: .6rem;
}
.docs-sidebar {
background: #fff;
height: 100%;
overflow-y: auto;
padding-left: 3rem;
position: fixed;
right: 0;
top: 0;
-webkit-transform: translateX(100%);
-ms-transform: translateX(100%);
transform: translateX(100%);
transition: transform .216s ease, -webkit-transform .216s ease;
transition: transform .216s ease;
transition: -webkit-transform .216s ease;
width: 24rem;
z-index: 999;
}
.docs-sidebar:target {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
.docs-sidebar:target + .docs-nav-clear {
display: block;
}
.docs-content header {
padding-top: 6rem;
}
.docs-nav-clear {
background: rgba(0, 0, 0, .15);
display: none;
height: 100%;
left: 0;
position: fixed;
right: 0;
top: 0;
width: 100%;
z-index: 499;
}
}
1 change: 0 additions & 1 deletion docs/css/docs.min.css

This file was deleted.

Loading

0 comments on commit 1f0f5df

Please sign in to comment.