Skip to content

Commit

Permalink
Prepare for v3.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
louismerlin committed Apr 12, 2024
1 parent 768ad14 commit 5369411
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 30 deletions.
14 changes: 5 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,28 +14,24 @@ Concrete can be a great starting point for a simple website.

It also switches to a dark theme if your OS uses one.

Best used in pair with [normalize.css](https://necolas.github.io/normalize.css/).

Inspired by [Milligram](https://milligram.io/) and [Skeleton](http://getskeleton.com/).

#### Please feel free to open an issue and/or contribute !

## Get Started

### In your HTML `<head>`
Just drop these lines into your html `<head>`:
Just drop this line into your html `<head>`:
```
<link rel="stylesheet" href="https://unpkg.com/[email protected]/normalize.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/concrete.min.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/concrete.min.css">
```

### In your javascript project
Add the dependencies:
Add the dependency:
```
npm install normalize.css concrete.css
npm install concrete.css
```
Import them somewhere in your code:
Import it somewhere in your code:
```
import 'normalize.css'
import 'concrete.css'
```
2 changes: 1 addition & 1 deletion concrete.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! concrete.css v2.1.2 | MIT License | github.com/louismerlin/concrete.css */
/*! concrete.css v3.0.0 | MIT License | github.com/louismerlin/concrete.css */

/**
* Set universal color variables
Expand Down
4 changes: 2 additions & 2 deletions concrete.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ <h2>What is this ?</h2>
<h2>Get Started</h2>
<h3>In your HTML <code>&lt;head&gt;</code></h3>
<p>Just drop this line into your HTML head:</p>
<pre><code>&lt;link rel="stylesheet" href="https://unpkg.com/concrete.css@2.1.2/concrete.min.css"&gt;</code></pre>
<pre><code>&lt;link rel="stylesheet" href="https://unpkg.com/concrete.css@3.0.0/concrete.min.css"&gt;</code></pre>
<h3>In your javascript project</h3>
<p>Add the dependency:</p>
<pre><code>npm install concrete.css</code></pre>
Expand Down
18 changes: 2 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "concrete.css",
"description": "A simple and to the point classless CSS stylesheet",
"version": "2.1.2",
"version": "3.0.0",
"main": "concrete.css",
"files": [
"*.css"
Expand Down

0 comments on commit 5369411

Please sign in to comment.