minor alterations to the skin I currently have set on ao3; organized other files; am working on embedding intel one mono as a web font; set up readme; made gitignore
This commit is contained in:
parent
2b34ed869b
commit
89e955956f
4 changed files with 1448 additions and 2 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
reference/
|
||||
20
README.md
20
README.md
|
|
@ -1,3 +1,19 @@
|
|||
# ao3-dyslexia-friendly-site-skins
|
||||
|
||||
📕 Easy to read dyslexia friendly themes/site-skins for AO3
|
||||
<p align="center"><em>📕 Easy to read dyslexia friendly themes/site-skins for AO3</em></p>
|
||||
<h1 align="center"><a href="<url>">Dyslexia Friendly Site Skins for AO3</a></h1>
|
||||
|
||||
<p align="center">
|
||||
<a href="<url>">Link</a> •
|
||||
<a href="<url>">Link</a> •
|
||||
<a href="<url>">Link</a> •
|
||||
<a href="<url>">Link</a>
|
||||
</p>
|
||||
|
||||
<br><br><br>
|
||||
|
||||
<h6 align="center">Additional Links</h6>
|
||||
<p><small>
|
||||
|
||||
- [Link](<url>)
|
||||
|
||||
<small></p>
|
||||
163
fonts/intel-one-mono.css
Normal file
163
fonts/intel-one-mono.css
Normal file
|
|
@ -0,0 +1,163 @@
|
|||
/**
|
||||
* Intel One Mono Font Family
|
||||
* See: https://github.com/intel/intel-one-mono
|
||||
*/
|
||||
|
||||
/**
|
||||
* todo:
|
||||
* - could create and host the eot files myself (how useful would that be--more research on compatibility needed)
|
||||
* - also see: https://github.com/google/fonts/issues/6262 seems like there are plans to add Intel One Mono to google fonts but it's been backlogged with no updates for ~10 months after having missed the 2024 Q1 milestone
|
||||
* - this file should be in it's own repository
|
||||
* - how many languages unicode-ranges does Intel One Mono support?
|
||||
*/
|
||||
|
||||
:root {
|
||||
--light-weight: 300;
|
||||
--regular-weight: 400;
|
||||
--medium-weight: 500;
|
||||
--bold-weight: 700;
|
||||
}
|
||||
|
||||
/**
|
||||
* unicode-ranges
|
||||
* todo: add italic
|
||||
*/
|
||||
|
||||
|
||||
/* latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Intel One Mono';
|
||||
font-style: normal;
|
||||
font-weight: 200 1000;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://github.com/intel/intel-one-mono/raw/2eea32853098f3d431531a70a87d5346359a19a6/fonts/woff2/IntelOneMono-Regular.woff2)
|
||||
format('woff2');
|
||||
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||
}
|
||||
|
||||
/* latin */
|
||||
@font-face {
|
||||
font-family: 'Intel One Mono';
|
||||
font-style: normal;
|
||||
font-weight: 200 1000;
|
||||
font-stretch: 100%;
|
||||
font-display: swap;
|
||||
src: url(https://github.com/intel/intel-one-mono/raw/2eea32853098f3d431531a70a87d5346359a19a6/fonts/woff2/IntelOneMono-Regular.woff2)
|
||||
format('woff2');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
|
||||
/**
|
||||
* Font Styles
|
||||
*/
|
||||
|
||||
/* Bold */
|
||||
@font-face {
|
||||
font-family: 'Intel One Mono';
|
||||
/*
|
||||
src: url(https://github.com/intel/intel-one-mono/raw/2eea32853098f3d431531a70a87d5346359a19a6/fonts/woff/IntelOneMono-Bold.woff);
|
||||
*/
|
||||
src: url(https://github.com/intel/intel-one-mono/raw/2eea32853098f3d431531a70a87d5346359a19a6/fonts/woff2/IntelOneMono-Bold.woff2)
|
||||
format("woff2"),
|
||||
url(https://github.com/intel/intel-one-mono/raw/2eea32853098f3d431531a70a87d5346359a19a6/fonts/woff/IntelOneMono-Bold.woff)
|
||||
format("woff");
|
||||
font-weight: var(--bold-weight);
|
||||
font-style: bold;
|
||||
font-stretch: normal;
|
||||
}
|
||||
|
||||
/* BoldItalic */
|
||||
@font-face {
|
||||
font-family: 'Intel One Mono';
|
||||
src: url(Extralight-Web.woff)
|
||||
format("woff");
|
||||
font-weight: var(--bold-weight);
|
||||
font-style: bold, italic;
|
||||
font-stretch: normal;
|
||||
}
|
||||
|
||||
/* Italic */
|
||||
@font-face {
|
||||
font-family: 'Intel One Mono';
|
||||
src: url(Light-Web.woff2)
|
||||
format("woff2"),
|
||||
url(Light-Web.woff)
|
||||
format("woff");
|
||||
font-weight: var(--regular-weight);
|
||||
font-style: italic;
|
||||
font-stretch: normal;
|
||||
}
|
||||
|
||||
/* Light */
|
||||
@font-face {
|
||||
font-family: 'Intel One Mono';
|
||||
src: url(Regular-Web.woff2)
|
||||
format("woff2"),
|
||||
url(Regular-Web.woff)
|
||||
format("woff");
|
||||
font-weight: var(--light-weight);
|
||||
font-style: normal;
|
||||
font-stretch: normal;
|
||||
}
|
||||
|
||||
/* LightItalic */
|
||||
@font-face {
|
||||
font-family: 'Intel One Mono';
|
||||
src: url(<url>.eot);
|
||||
src: url(<url>.eot?#iefix)
|
||||
format("embedded-opentype"),
|
||||
url(Medium-Web.woff2)
|
||||
format("woff2"),
|
||||
url(Medium-Web.woff)
|
||||
format("woff");
|
||||
font-weight: var(--light-weight);
|
||||
font-style: italic;
|
||||
font-stretch: normal;
|
||||
}
|
||||
|
||||
/* Medium */
|
||||
@font-face {
|
||||
font-family: 'Intel One Mono';
|
||||
src: url(<url>.eot);
|
||||
src: url(<url>.eot#iefix)
|
||||
format("embedded-opentype"),
|
||||
url(Semibold-Web.woff2)
|
||||
format("woff2"),
|
||||
url(Semibold-Web.woff)
|
||||
format("woff");
|
||||
font-weight: var(--medium-weight);
|
||||
font-style: normal;
|
||||
font-stretch: normal;
|
||||
}
|
||||
|
||||
/* MediumItalic */
|
||||
@font-face {
|
||||
font-family: 'Intel One Mono';
|
||||
src: url(<url>.eot);
|
||||
src: url(<url>.eot?#iefix)
|
||||
format("embedded-opentype"),
|
||||
url(Bold-Web.woff2)
|
||||
format("woff2"),
|
||||
url(Bold-Web.woff)
|
||||
format("woff");
|
||||
font-weight: var(--medium-weight);
|
||||
font-style: italic;
|
||||
font-stretch: normal;
|
||||
}
|
||||
|
||||
/* Regular */
|
||||
@font-face {
|
||||
font-family: 'Intel One Mono';
|
||||
src: url(<url>.eot);
|
||||
src: url(<url>.eot?#iefix)
|
||||
format("embedded-opentype"),
|
||||
url(https://github.com/intel/intel-one-mono/raw/2eea32853098f3d431531a70a87d5346359a19a6/fonts/woff2/IntelOneMono-Regular.woff2)
|
||||
format("woff2"),
|
||||
url(https://github.com/intel/intel-one-mono/raw/2eea32853098f3d431531a70a87d5346359a19a6/fonts/woff/IntelOneMono-Regular.woff)
|
||||
format("woff");
|
||||
font-weight: var(--regular-weight);
|
||||
font-style: normal;
|
||||
font-stretch: normal;
|
||||
}
|
||||
|
||||
1266
site-skins/inspired-by-electricalice/minimal-dyslexic.css
Normal file
1266
site-skins/inspired-by-electricalice/minimal-dyslexic.css
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue