Skip to content
This repository has been archived by the owner on Jul 28, 2019. It is now read-only.

Commit

Permalink
Merge pull request #6 from Social-chan/dev-0.x
Browse files Browse the repository at this point in the history
Fix docs css
  • Loading branch information
d8vjork committed Apr 19, 2017
2 parents 6467159 + 971c519 commit df01bf1
Show file tree
Hide file tree
Showing 11 changed files with 380 additions and 11 deletions.
4 changes: 2 additions & 2 deletions docs/components.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<title>Tadaima - Pure CSS Framework</title>

<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Palanquin:400">
<link rel="stylesheet" href="../dist/css/tadaima.min.css">
<link rel="stylesheet" href="./docs.css">
<link rel="stylesheet" href="dist/css/tadaima.min.css">
<link rel="stylesheet" href="dist/css/docs.css">
</head>
<body>
<nav class="vertical">
Expand Down
6 changes: 3 additions & 3 deletions docs/docs.css → docs/dist/css/docs.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@
* Licensed under MIT (https://github.com/Social-chan/Tadaima/blob/master/LICENSE)
*/

h2 > a.anchor-link {
h2>a.anchor-link {
opacity: 0;
color: inherit;
position: absolute;
margin-left: -1em;
}

:hover > a.anchor-link {
:hover>a.anchor-link {
opacity: .75;
}

a.anchor-link:focus,
:hover > a.anchor-link:hover {
:hover>a.anchor-link:hover {
opacity: 1;
text-decoration: none;
}
Expand Down
6 changes: 6 additions & 0 deletions docs/dist/css/tadaima.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/dist/css/tadaima.min.css.map

Large diffs are not rendered by default.

Binary file added docs/dist/fonts/batch.eot
Binary file not shown.
360 changes: 360 additions & 0 deletions docs/dist/fonts/batch.svg
Loading
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/dist/fonts/batch.ttf
Binary file not shown.
Binary file added docs/dist/fonts/batch.woff
Binary file not shown.
4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<title>Tadaima - Pure CSS Framework</title>

<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Palanquin:400">
<link rel="stylesheet" href="../dist/css/tadaima.min.css">
<link rel="stylesheet" href="./docs.css">
<link rel="stylesheet" href="dist/css/tadaima.min.css">
<link rel="stylesheet" href="dist/css/docs.css">
</head>
<body>
<nav class="vertical">
Expand Down
4 changes: 2 additions & 2 deletions docs/mixes.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<title>Tadaima - Pure CSS Framework</title>

<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Palanquin:400">
<link rel="stylesheet" href="../dist/css/tadaima.min.css">
<link rel="stylesheet" href="./docs.css">
<link rel="stylesheet" href="dist/css/tadaima.min.css">
<link rel="stylesheet" href="dist/css/docs.css">
</head>
<body>
<nav class="vertical">
Expand Down
6 changes: 4 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ var
const
scss_dir = './components',
src_styles = './src',
dist_styles = './dist/css';
dist_styles = './dist/css',
docs_styles = './docs/dist/css';

var getPackageJson = function () {
return JSON.parse(fs.readFileSync('./package.json', 'utf8'));
Expand Down Expand Up @@ -67,7 +68,8 @@ gulp.task('clean', ['delete'], function () {
console.log(details.name + ': ' + details.stats.minifiedSize);
}))
.pipe(sourcemaps.write('./'))
.pipe(gulp.dest(dist_styles));
.pipe(gulp.dest(dist_styles))
.pipe(gulp.dest(docs_styles));
});

// Compress build (dist) pack in zip
Expand Down

0 comments on commit df01bf1

Please sign in to comment.