new
This commit is contained in:
parent
dbadcf267e
commit
66af302e2d
115 changed files with 721 additions and 278 deletions
43
site/assets/fonts/Rowan_Complete/Fonts/WEB/README.md
Normal file
43
site/assets/fonts/Rowan_Complete/Fonts/WEB/README.md
Normal file
|
@ -0,0 +1,43 @@
|
|||
# Installing Webfonts
|
||||
Follow these simple Steps.
|
||||
|
||||
## 1.
|
||||
Put `rowan/` Folder into a Folder called `fonts/`.
|
||||
|
||||
## 2.
|
||||
Put `rowan.css` into your `css/` Folder.
|
||||
|
||||
## 3. (Optional)
|
||||
You may adapt the `url('path')` in `rowan.css` depends on your Website Filesystem.
|
||||
|
||||
## 4.
|
||||
Import `rowan.css` at the top of you main Stylesheet.
|
||||
|
||||
```
|
||||
@import url('rowan.css');
|
||||
```
|
||||
|
||||
## 5.
|
||||
You are now ready to use the following Rules in your CSS to specify each Font Style:
|
||||
```
|
||||
font-family: Rowan-Light;
|
||||
font-family: Rowan-LightItalic;
|
||||
font-family: Rowan-Regular;
|
||||
font-family: Rowan-Italic;
|
||||
font-family: Rowan-Medium;
|
||||
font-family: Rowan-MediumItalic;
|
||||
font-family: Rowan-Semibold;
|
||||
font-family: Rowan-SemiboldItalic;
|
||||
font-family: Rowan-Bold;
|
||||
font-family: Rowan-BoldItalic;
|
||||
font-family: Rowan-Variable;
|
||||
font-family: Rowan-VariableItalic;
|
||||
|
||||
```
|
||||
## 6. (Optional)
|
||||
Use `font-variation-settings` rule to controll axes of variable fonts:
|
||||
wght 700.0
|
||||
|
||||
Available axes:
|
||||
'wght' (range from 300.0 to 700.0
|
||||
|
148
site/assets/fonts/Rowan_Complete/Fonts/WEB/css/rowan.css
Normal file
148
site/assets/fonts/Rowan_Complete/Fonts/WEB/css/rowan.css
Normal file
|
@ -0,0 +1,148 @@
|
|||
/**
|
||||
* @license
|
||||
*
|
||||
* Font Family: Rowan
|
||||
* Designed by: Inga Plönnigs
|
||||
* URL: https://www.fontshare.com/fonts/rowan
|
||||
* © 2025 Indian Type Foundry
|
||||
*
|
||||
* Rowan Light
|
||||
* Rowan LightItalic
|
||||
* Rowan Regular
|
||||
* Rowan Italic
|
||||
* Rowan Medium
|
||||
* Rowan MediumItalic
|
||||
* Rowan Semibold
|
||||
* Rowan SemiboldItalic
|
||||
* Rowan Bold
|
||||
* Rowan BoldItalic
|
||||
* Rowan Variable (Variable font)
|
||||
* Rowan VariableItalic (Variable font)
|
||||
|
||||
*
|
||||
*/
|
||||
@font-face {
|
||||
font-family: 'Rowan-Light';
|
||||
src: url('../fonts/Rowan-Light.woff2') format('woff2'),
|
||||
url('../fonts/Rowan-Light.woff') format('woff'),
|
||||
url('../fonts/Rowan-Light.ttf') format('truetype');
|
||||
font-weight: 300;
|
||||
font-display: swap;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Rowan-LightItalic';
|
||||
src: url('../fonts/Rowan-LightItalic.woff2') format('woff2'),
|
||||
url('../fonts/Rowan-LightItalic.woff') format('woff'),
|
||||
url('../fonts/Rowan-LightItalic.ttf') format('truetype');
|
||||
font-weight: 300;
|
||||
font-display: swap;
|
||||
font-style: italic;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Rowan-Regular';
|
||||
src: url('../fonts/Rowan-Regular.woff2') format('woff2'),
|
||||
url('../fonts/Rowan-Regular.woff') format('woff'),
|
||||
url('../fonts/Rowan-Regular.ttf') format('truetype');
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Rowan-Italic';
|
||||
src: url('../fonts/Rowan-Italic.woff2') format('woff2'),
|
||||
url('../fonts/Rowan-Italic.woff') format('woff'),
|
||||
url('../fonts/Rowan-Italic.ttf') format('truetype');
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
font-style: italic;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Rowan-Medium';
|
||||
src: url('../fonts/Rowan-Medium.woff2') format('woff2'),
|
||||
url('../fonts/Rowan-Medium.woff') format('woff'),
|
||||
url('../fonts/Rowan-Medium.ttf') format('truetype');
|
||||
font-weight: 500;
|
||||
font-display: swap;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Rowan-MediumItalic';
|
||||
src: url('../fonts/Rowan-MediumItalic.woff2') format('woff2'),
|
||||
url('../fonts/Rowan-MediumItalic.woff') format('woff'),
|
||||
url('../fonts/Rowan-MediumItalic.ttf') format('truetype');
|
||||
font-weight: 500;
|
||||
font-display: swap;
|
||||
font-style: italic;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Rowan-Semibold';
|
||||
src: url('../fonts/Rowan-Semibold.woff2') format('woff2'),
|
||||
url('../fonts/Rowan-Semibold.woff') format('woff'),
|
||||
url('../fonts/Rowan-Semibold.ttf') format('truetype');
|
||||
font-weight: 600;
|
||||
font-display: swap;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Rowan-SemiboldItalic';
|
||||
src: url('../fonts/Rowan-SemiboldItalic.woff2') format('woff2'),
|
||||
url('../fonts/Rowan-SemiboldItalic.woff') format('woff'),
|
||||
url('../fonts/Rowan-SemiboldItalic.ttf') format('truetype');
|
||||
font-weight: 600;
|
||||
font-display: swap;
|
||||
font-style: italic;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Rowan-Bold';
|
||||
src: url('../fonts/Rowan-Bold.woff2') format('woff2'),
|
||||
url('../fonts/Rowan-Bold.woff') format('woff'),
|
||||
url('../fonts/Rowan-Bold.ttf') format('truetype');
|
||||
font-weight: 700;
|
||||
font-display: swap;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Rowan-BoldItalic';
|
||||
src: url('../fonts/Rowan-BoldItalic.woff2') format('woff2'),
|
||||
url('../fonts/Rowan-BoldItalic.woff') format('woff'),
|
||||
url('../fonts/Rowan-BoldItalic.ttf') format('truetype');
|
||||
font-weight: 700;
|
||||
font-display: swap;
|
||||
font-style: italic;
|
||||
}
|
||||
/**
|
||||
* This is a variable font
|
||||
* You can control variable axes as shown below:
|
||||
* font-variation-settings: wght 700.0;
|
||||
*
|
||||
* available axes:
|
||||
'wght' (range from 300.0 to 700.0
|
||||
*/
|
||||
@font-face {
|
||||
font-family: 'Rowan-Variable';
|
||||
src: url('../fonts/Rowan-Variable.woff2') format('woff2'),
|
||||
url('../fonts/Rowan-Variable.woff') format('woff'),
|
||||
url('../fonts/Rowan-Variable.ttf') format('truetype');
|
||||
font-weight: 300 700;
|
||||
font-display: swap;
|
||||
font-style: normal;
|
||||
}
|
||||
/**
|
||||
* This is a variable font
|
||||
* You can control variable axes as shown below:
|
||||
* font-variation-settings: wght 700.0;
|
||||
*
|
||||
* available axes:
|
||||
'wght' (range from 300.0 to 700.0
|
||||
*/
|
||||
@font-face {
|
||||
font-family: 'Rowan-VariableItalic';
|
||||
src: url('../fonts/Rowan-VariableItalic.woff2') format('woff2'),
|
||||
url('../fonts/Rowan-VariableItalic.woff') format('woff'),
|
||||
url('../fonts/Rowan-VariableItalic.ttf') format('truetype');
|
||||
font-weight: 300 700;
|
||||
font-display: swap;
|
||||
font-style: italic;
|
||||
}
|
||||
|
BIN
site/assets/fonts/Rowan_Complete/Fonts/WEB/fonts/Rowan-Bold.eot
Normal file
BIN
site/assets/fonts/Rowan_Complete/Fonts/WEB/fonts/Rowan-Bold.eot
Normal file
Binary file not shown.
BIN
site/assets/fonts/Rowan_Complete/Fonts/WEB/fonts/Rowan-Bold.ttf
Normal file
BIN
site/assets/fonts/Rowan_Complete/Fonts/WEB/fonts/Rowan-Bold.ttf
Normal file
Binary file not shown.
BIN
site/assets/fonts/Rowan_Complete/Fonts/WEB/fonts/Rowan-Bold.woff
Normal file
BIN
site/assets/fonts/Rowan_Complete/Fonts/WEB/fonts/Rowan-Bold.woff
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
site/assets/fonts/Rowan_Complete/Fonts/WEB/fonts/Rowan-Light.eot
Normal file
BIN
site/assets/fonts/Rowan_Complete/Fonts/WEB/fonts/Rowan-Light.eot
Normal file
Binary file not shown.
BIN
site/assets/fonts/Rowan_Complete/Fonts/WEB/fonts/Rowan-Light.ttf
Normal file
BIN
site/assets/fonts/Rowan_Complete/Fonts/WEB/fonts/Rowan-Light.ttf
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue