Skip to content
This repository was archived by the owner on Apr 14, 2023. It is now read-only.

Commit 3ac0f13

Browse files
author
Release Bot
committed
v1.0.93
1 parent d3e41fa commit 3ac0f13

26 files changed

+248
-149
lines changed

README.md

+35-29
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,10 @@
1010

1111
<p align="center">Simply designed to fit your cascading web life.</p>
1212

13-
<p align="center"><strong>Version: 1.0.89</strong></p>
13+
<p align="center"><strong>Version: 1.0.93</strong></p>
1414

1515
<p align="center">
16-
[s](s)
17-
18-
<a href="https://github.com/reedia/skeletonic/archive/v1.0.89.zip" class="button primary">Download</a>
16+
<a href="https://github.com/reedia/skeletonic/archive/v1.0.93.zip" class="button primary">Download</a>
1917
</p>
2018

2119
[![NPM](https://nodei.co/npm/skeletonic.png)](https://nodei.co/npm/skeletonic/)
@@ -24,11 +22,13 @@
2422
[![Build Status](https://travis-ci.org/reedia/skeletonic.svg?branch=master)](https://travis-ci.org/reedia/skeletonic)
2523
[![Packagist](https://img.shields.io/badge/license-MIT-blue.svg)](https://skeletonic.github.io/license)
2624

25+
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Freedia%2Fskeletonic.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Freedia%2Fskeletonic?ref=badge_shield)
26+
2727
## Table of contents
2828

2929
- [Getting Started](#getting-started)
3030
- [What's in the box](#whats-in-the-box)
31-
- [Alternate CDN locations](#alter nate-cdn-locations)
31+
- [Alternate CDN locations](#alternate-cdn-locations)
3232
- [Built With](#built-with)
3333
- [Contributing](#contributing)
3434
- [Code of Conduct](#code-of-conduct)
@@ -39,14 +39,21 @@
3939

4040
## Getting Started
4141

42+
Skeletonic is constantly in development. Try it out now!
43+
4244
A few options are available:
4345

44-
- Download the latest [release](https://github.com/reedia/skeletonic/archive/v1.0.89.zip)
46+
- Download the latest [release](https://github.com/reedia/skeletonic/archive/v1.0.93.zip)
4547
- Install with [Npm](https://www.npmjs.com/package/skeletonic) to get the pre-built CSS and sourcemaps. This is recommended when using Skeletonic for a typical web project:
4648

4749
```bash
4850
npm install skeletonic
4951
```
52+
- Install with [Yarn](https://yarnpkg.com/en/package/skeletonic) to get the pre-built CSS and sourcemaps. This is recommended when using Skeletonic for a typical web project:
53+
54+
```bash
55+
yarn add skeletonic
56+
```
5057

5158
- Or simply clone the main repository to get all source files including build scripts: `git clone https://github.com/reedia/skeletonic.git`
5259

@@ -57,21 +64,21 @@ The Github project contains all source files which are compiled into the dist fo
5764
```
5865
Skeletonic
5966
├── index.html
60-
├── skeletonic-1.0.89.css
61-
├── skeletonic-1.0.89.css.map
62-
├── skeletonic-animations-1.0.89.css
63-
├── skeletonic-animations-1.0.89.css.map
64-
├── skeletonic-animations.min-1.0.89.css
65-
├── skeletonic-colours-1.0.89.css
66-
├── skeletonic-colours-1.0.89.css.map
67-
├── skeletonic-colours.min-1.0.89.css
68-
├── skeletonic-fonts-1.0.89.css
69-
├── skeletonic-fonts-1.0.89.css.map
70-
├── skeletonic-fonts.min-1.0.89.css
71-
├── skeletonic-pattern-1.0.89.css
72-
├── skeletonic-pattern-1.0.89.css.map
73-
├── skeletonic-pattern.min-1.0.89.css
74-
├── skeletonic.min-1.0.89.css
67+
├── skeletonic.css
68+
├── skeletonic.css.map
69+
├── skeletonic-animations.css
70+
├── skeletonic-animations.css.map
71+
├── skeletonic-animations.min.css
72+
├── skeletonic-colours.css
73+
├── skeletonic-colours.css.map
74+
├── skeletonic-colours.min.css
75+
├── skeletonic-fonts.css
76+
├── skeletonic-fonts.css.map
77+
├── skeletonic-fonts.min.css
78+
├── skeletonic-pattern.css
79+
├── skeletonic-pattern.css.map
80+
├── skeletonic-pattern.min.css
81+
├── skeletonic.min.css
7582
```
7683

7784
You simply then need to link one of these in your HTML document.
@@ -81,7 +88,7 @@ The link consists of just a simple line of HTML code that you will need to put i
8188
#### Default CSS
8289

8390
```
84-
<link rel="stylesheet" type="text/css" href="skeletonic.min-1.0.89.css" />
91+
<link rel="stylesheet" type="text/css" href="skeletonic.min.css" />
8592
```
8693

8794
We also offer production-ready versions and use unpkg as our CDN to link to the latest production version
@@ -92,27 +99,27 @@ We also offer production-ready versions and use unpkg as our CDN to link to the
9299

93100
#### CSS Responsive Grid-View
94101
```
95-
<link rel="stylesheet" type="text/css" href="skeletonic-pattern.min-1.0.89.css" />
102+
<link rel="stylesheet" type="text/css" href="skeletonic-pattern.min.css" />
96103
```
97104

98105
#### CSS Colours
99106
```
100-
<link rel="stylesheet" type="text/css" href="skeletonic-colours.min-1.0.89.css" />
107+
<link rel="stylesheet" type="text/css" href="skeletonic-colours.min.css" />
101108
```
102109

103110
#### CSS Animations
104111
```
105-
<link rel="stylesheet" type="text/css" href="skeletonic-animations.min-1.0.89.css" />
112+
<link rel="stylesheet" type="text/css" href="skeletonic-animations.min.css" />
106113
```
107114

108115
## Alternate CDN locations
109116
The following table lists alternate CDN locations where Skeletonic is hosted.
110117

111118
| CDN | URL | HTTPS | Combo |
112119
|---|---|---|---|
113-
| [unpkg](https://unpkg.com/) | https://unpkg.com/[email protected].89/dist/skeletonic.min-1.0.89.css | Yes | No |
114-
| [jsDelivr](https://www.jsdelivr.com/) | https://cdn.jsdelivr.net/npm/skeletonic/dist/skeletonic.min-1.0.89.css | Yes | Yes |
115-
| [RawGit](http://rawgit.com/) | https://cdn.rawgit.com/reedia/skeletonic/master/dist/skeletonic.min-1.0.89.css | Yes | No |
120+
| [unpkg](https://unpkg.com/) | https://unpkg.com/[email protected].93/dist/skeletonic.min.css | Yes | No |
121+
| [jsDelivr](https://www.jsdelivr.com/) | https://cdn.jsdelivr.net/npm/skeletonic/dist/skeletonic.min.css | Yes | Yes |
122+
| [RawGit](http://rawgit.com/) | https://cdn.rawgit.com/reedia/skeletonic/master/dist/skeletonic.min.css | Yes | No |
116123

117124

118125

@@ -161,4 +168,3 @@ Credit also goes to the following source code libraries:
161168
## About Reedia
162169

163170
![Reedia](https://avatars0.githubusercontent.com/u/488747?s=200)
164-
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Freedia%2Fskeletonic.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Freedia%2Fskeletonic?ref=badge_shield)

dist/skeletonic-1.0.89.css.map

-1
This file was deleted.

0 commit comments

Comments
 (0)