Skip to content

Commit

Permalink
docs(HOWTO): update sample version to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleyboar committed Mar 28, 2024
1 parent c2b63d8 commit 9e06803
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions HOWTO.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ Load `core-styles.base.css` from a CDN e.g. [JSDeliver].
- Either in HTML:

```html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tacc/core-styles@2.6.2/dist/core-styles.base.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tacc/core-styles@2.25.3/dist/core-styles.base.css" />
```

- Or in CSS:

```css
@import url("https://cdn.jsdelivr.net/npm/@tacc/core-styles@2.6.2/dist/core-styles.base.css");
@import url("https://cdn.jsdelivr.net/npm/@tacc/core-styles@2.25.3/dist/core-styles.base.css");
```

### 2. Project
Expand All @@ -53,15 +53,15 @@ Load any one of these relevant project-type CSS from a CDN e.g. [JSDeliver]:
- Either in HTML:

```html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tacc/core-styles@2.6.2/dist/core-styles.______.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tacc/core-styles@2.25.3/dist/core-styles.______.css" />
```

Replace `______` with `cms` or `docs` or `portal`.

- Or in CSS:

```css
@import url("https://cdn.jsdelivr.net/npm/@tacc/core-styles@2.6.2/dist/core-styles.______.css");
@import url("https://cdn.jsdelivr.net/npm/@tacc/core-styles@2.25.3/dist/core-styles.______.css");
```

Replace `______` with `cms` or `docs` or `portal`.
Expand Down Expand Up @@ -114,13 +114,13 @@ Load `core-styles.settings.css` from a CDN e.g. [JSDeliver].
- Either in HTML:

```html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tacc/core-styles@2.6.2/dist/core-styles.settings.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tacc/core-styles@2.25.3/dist/core-styles.settings.css" />
```

- Or in CSS:

```css
@import url("https://cdn.jsdelivr.net/npm/@tacc/core-styles@2.6.2/dist/core-styles.settings.css");
@import url("https://cdn.jsdelivr.net/npm/@tacc/core-styles@2.25.3/dist/core-styles.settings.css");
```

### Load a [Core Styles] Pattern
Expand All @@ -130,13 +130,13 @@ To use a pattern as is.
- Either in HTML:

```html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tacc/core-styles@2.6.2/dist/components/c-message.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tacc/core-styles@2.25.3/dist/components/c-message.css" />
```

- Or in CSS:

```css
@import url("https://cdn.jsdelivr.net/npm/@tacc/core-styles@2.6.2/dist/core-styles.settings.css");
@import url("https://cdn.jsdelivr.net/npm/@tacc/core-styles@2.25.3/dist/core-styles.settings.css");
```

### Extend a [Core Styles] Pattern
Expand All @@ -146,7 +146,7 @@ To use a pattern but also change it to fit a unique requirement of your site.
- Either in HTML:

```html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tacc/core-styles@2.6.2/dist/components/c-message.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tacc/core-styles@2.25.3/dist/components/c-message.css" />
<style>
.c-message--scope-section {
margin-bottom: 1em;
Expand All @@ -157,7 +157,7 @@ To use a pattern but also change it to fit a unique requirement of your site.
- Or in CSS:

```css
@import url("https://cdn.jsdelivr.net/npm/@tacc/core-styles@2.6.2/dist/core-styles.settings.css");
@import url("https://cdn.jsdelivr.net/npm/@tacc/core-styles@2.25.3/dist/core-styles.settings.css");

.c-message--scope-section {
margin-bottom: 1em;
Expand Down

0 comments on commit 9e06803

Please sign in to comment.