diff --git a/.claude/skills/project-context/SKILL.md b/.claude/skills/project-context/SKILL.md new file mode 100644 index 0000000..eb7bd85 --- /dev/null +++ b/.claude/skills/project-context/SKILL.md @@ -0,0 +1,27 @@ +--- +name: custom-font-tap-project +description: Use when working in this repository, when the user asks about fonts, Homebrew formulae, the font tap, adding fonts, or the folder structure in font_files or Formula. Describes a Homebrew tap for custom fonts and the scripts that organize font folders and generate formulae. +--- + +# Custom Font Tap — Project context + +**Canonical reference: read [PROJECT.md](../../../PROJECT.md) at the repo root.** + +## What this repo is +- A **Homebrew tap** for a personal font collection. Users run `brew tap genet-godzilla/fonts ...` then `brew install font-`. +- Fonts live in `font_files/font-/` with exactly four subdirectories: `ttf/`, `otf/`, `web/`, `other_files/`. + +## Rules +- **Do not edit `Formula/*.rb` by hand.** They are generated by `.fontfoldercleanup/create_homebrew_formula.py`. +- All font folders must use the `font-` prefix. Only `.ttf` in ttf/, `.otf` in otf/, web fonts (woff, woff2, eot, svg) in web/, everything else in other_files/. +- To add a font: add `font_files/font-/`, run `cleanup_font_folders.py` then `create_homebrew_formula.py`. + +## Scripts (Python 3, in `.fontfoldercleanup/`) +- **cleanup_font_folders.py** — Organizes a directory of font folders into ttf/, otf/, web/, other_files/. Run with `--path ` (e.g. `font_files`). +- **create_homebrew_formula.py** — Generates `Formula/font-.rb` for every `font-*` folder in `font_files/`. + +## Quick commands (from repo root) +```bash +python3 .fontfoldercleanup/cleanup_font_folders.py --path font_files +python3 .fontfoldercleanup/create_homebrew_formula.py +``` diff --git a/.cursor/plans/tap_refactor_and_font_tests_ebcd5cae.plan.md b/.cursor/plans/tap_refactor_and_font_tests_ebcd5cae.plan.md new file mode 100644 index 0000000..fc5c48c --- /dev/null +++ b/.cursor/plans/tap_refactor_and_font_tests_ebcd5cae.plan.md @@ -0,0 +1,136 @@ +--- +name: Tap refactor and font tests +overview: Refactor the tap so font_files is the single source of truth, add a test suite that validates every font (structure, formula presence, and optional install checks), fix formula generation (Ruby class names, per-formula tests), consolidate to one formula per font, and add a uv-managed add-font CLI for an easy add/update workflow. +todos: [] +isProject: false +--- + +# Custom Font Tap Refactor and Test Plan + +## Current state (summary) + +- **124** font folders in `font_files/` (each `font-/` with `ttf/`, `otf/`, `web/`, `other_files/`). +- **250** Formula files: ~125 named `font-.rb` (from generator) and ~125 legacy `.rb` (no `font-` prefix). One formula (`font-acrylichand.rb`) has no matching folder (folder is `font-acrylic-hand`). +- **Scripts:** `[.fontfoldercleanup/cleanup_font_folders.py](.fontfoldercleanup/cleanup_font_folders.py)` organizes folders; `[.fontfoldercleanup/create_homebrew_formula.py](.fontfoldercleanup/create_homebrew_formula.py)` generates formulae. Formula class names use `.capitalize()` only, producing **invalid Ruby** for names with hyphens (e.g. `FontAcrylic-hand` — hyphen is minus in Ruby). Homebrew expects kebab-case filename → PascalCase class (e.g. `font-acrylic-hand.rb` → `FontAcrylicHand`). +- **No test suite.** Formulae have a generic `test do` that only checks share dirs exist, not that any font files were installed for that formula. +- **Add-font workflow** is manual: move folder, run cleanup, run formula generator, commit (see [PROJECT.md](PROJECT.md) § Workflows). + +--- + +## 1. Single source of truth and Formula cleanup + +- **Canonical list of fonts:** `font_files/` — every `font-*` directory is one font. Formula set must match exactly. +- **One formula per font**, named `**font-.rb**` only. Remove legacy formulae that lack the `font-` prefix (e.g. `acrylic-hand.rb`, `idgrotesk.rb`) after ensuring the `font-.rb` version exists and is correct. Optionally keep a one-time migration note or script that maps old names to `font-` for users. +- **Fix orphan formula:** Either remove `font-acrylichand.rb` or treat it as alias for `font-acrylic-hand` (document and point to same font folder); recommend removing if it was a typo. + +--- + +## 2. Formula generator fixes ([create_homebrew_formula.py](.fontfoldercleanup/create_homebrew_formula.py)) + +- **Ruby class name:** Convert formula name (the part after `font-`) to a valid PascalCase constant: + - `acrylic-hand` → `AcrylicHand` (split on `-` and `_`, capitalize each segment, join). + - Class: `Font` + that (e.g. `FontAcrylicHand`). No hyphens in the class name. +- **Per-formula test block:** Generate a `test do` that asserts **at least one** of the expected install paths actually has a file for this formula (e.g. for a font that has only OTF, assert `(share/"fonts/opentype").glob("*.otf").any?` or equivalent). If a font has zero ttf/otf/web files, the test can assert the formula’s `share/` dir exists and optionally that `other_files` content was installed. This makes “tests for every font” meaningful at the Homebrew level. +- **Optional:** Add a comment in the generated formula listing expected extensions (e.g. “TTF/OTF”) so humans and audits can see what the formula is supposed to install. + +--- + +## 3. Tests for every font + +Two layers: (A) repo-level tests that run without Homebrew install, (B) optional CI that runs Homebrew audits/installs. + +### 3a. Repo-level test suite (Python, e.g. pytest) + +- **Location:** e.g. `tests/` at repo root (or `.fontfoldercleanup/tests/` if you prefer to keep everything under the script dir). +- **Single source of truth:** Scan `font_files/` for all `font-*` directories. +- **For each font folder, test:** + - **Structure:** Exactly four subdirs: `ttf/`, `otf/`, `web/`, `other_files/`; no other top-level files or dirs (or treat “other” as error / move to `other_files` in cleanup). + - **At least one font file:** At least one of `ttf/*.ttf`, `otf/*.otf`, or `web/*.{woff,woff2,eot,svg}` exists (avoid “font” with only docs in `other_files` and no actual font). + - **Formula exists:** `Formula/font-.rb` exists for that folder name. + - **Formula content (sanity):** Generated formula references the correct `font_files/font-/` paths and correct formula name; optional: regex or simple parse to ensure class name is valid (PascalCase, no hyphen). +- **Global tests:** + - Every `Formula/font-*.rb` has a matching `font_files/font-/` directory (no orphan formulae). + - No duplicate formula names (only one `font-.rb` per name). +- **Implementation:** Parametrized tests (e.g. one test per font for structure, one per font for “formula exists”, etc.) so “EVERY” font is explicitly covered and failures report the font name. Use the same list of `font-*` dirs and the same naming rules as the formula generator so the suite and generator stay in sync. + +### 3b. Homebrew-level checks (CI) + +- `**brew audit`:** Run `brew audit --formula Formula/font-*.rb` (or equivalent) in CI to catch style and metadata issues. Fix any failures (e.g. empty `sha256`) where possible; for taps that don’t publish bottles, audit may still flag missing sha256 — document or suppress as appropriate. +- **Optional “install” test:** For CI, either: + - Run `brew install --formula ` for each `Formula/font-*.rb` (slow but validates install and the new per-formula test block), or + - Run install only for a small subset (e.g. 5–10 formulae) or on a schedule to keep CI fast. The repo-level tests above already validate structure and formula presence for every font. + +Recommended: add a GitHub Actions workflow under `.github/workflows/` that (1) runs the Python test suite, (2) runs `brew audit` on `Formula/*.rb`, and (3) optionally runs a few `brew install` tests. + +--- + +## 4. Easier add/update font workflow + +- **Command-line tool `add-font`:** A CLI invocable as `add-font` (or `uv run add-font` from the repo). Use **uv** for dependency management; the tool is auto-installed when you use uv to run it (e.g. `uv run add-font` creates/uses the project venv and runs the entry point; no separate install step required). Optionally run `uv tool install .` from the repo for a global `add-font` on PATH. **Behavior:** + - **Add:** Accept a path to an unpacked font (folder or archive) or a name if the folder is already in `font_files/`. If path is given, copy/move into `font_files/font-` (prompt or infer `` from folder name), then run cleanup then formula generator. + - **Update:** If `font_files/font-` already exists, run cleanup (to reorganize any new files) then formula generator. + - **Validation:** After changes, run the Python test suite (and optionally `brew audit` for touched formulae). Exit non-zero if tests fail. +- **Project layout:** Add `pyproject.toml` at repo root with a console script entry point, e.g. `add-font = "tap_cli.main:main"`. Python tooling (tests, add-font, existing scripts) lives under this uv-managed project. +- **Documentation:** Update [PROJECT.md](PROJECT.md) (and [.cursorrules](.cursorrules) / [.claude/skills/project-context/SKILL.md](.claude/skills/project-context/SKILL.md)) so the documented “add a font” flow is: (1) put files in `To Sort/` or pass path, (2) run `uv run add-font ` (or `add-font ` if installed via `uv tool install .`), (3) commit `font_files/font-/` and `Formula/font-.rb`. Document “regenerate all formulae” as running the formula generator then the test suite. + +--- + +## 5. Implementation order (suggested) + +1. **Formula generator:** Fix class name generation (PascalCase, no hyphens) and improve `test do` to assert at least one font file (or other_files) for that formula. Regenerate all formulae from current `font_files/`. +2. **Remove legacy and orphan formulae:** Delete formulae without `font-` prefix; remove or fix `font-acrylichand`. Ensure 1:1 mapping font folder ↔ `Formula/font-.rb`. +3. **Repo-level test suite:** Add `tests/` (or equivalent), implement parametrized tests for every font (structure, at least one font file, formula exists, formula sanity). Run and fix any failures. +4. `**add-font` CLI (uv):** Add `pyproject.toml` with uv and a console script entry point `add-font`. Implement the CLI that runs cleanup, formula generator, and test suite; document `uv run add-font` (and optional `uv tool install .`) in PROJECT.md and related context files. +5. **CI:** Add GitHub Actions workflow for Python tests and `brew audit`; optionally add a small number of `brew install` jobs. + +--- + +## 6. Diagram (high-level) + +```mermaid +flowchart LR + subgraph sources [Single source of truth] + FontDirs["font_files/font-*"] + end + + subgraph scripts [Scripts and CLI] + Cleanup["cleanup_font_folders.py"] + Generator["create_homebrew_formula.py"] + AddFont["add-font CLI"] + end + + subgraph tests [Tests] + PyTests["Python tests (per font)"] + BrewAudit["brew audit"] + end + + FontDirs --> Cleanup + FontDirs --> Generator + Cleanup --> FontDirs + Generator --> Formula["Formula/font-*.rb"] + AddFont --> Cleanup + AddFont --> Generator + AddFont --> PyTests + FontDirs --> PyTests + Formula --> PyTests + Formula --> BrewAudit +``` + + + +--- + +## 7. Files to add or change (concise) + + +| Area | Action | +| ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [.fontfoldercleanup/create_homebrew_formula.py](.fontfoldercleanup/create_homebrew_formula.py) | Add `formula_name_to_class(name)` (PascalCase); generate per-formula test that asserts installed files; use in `generate_formula_content`. | +| Formula/*.rb | Regenerate all; then remove legacy non–`font-` formulae and fix/remove `font-acrylichand`. | +| tests/ | New: `conftest.py` or shared helper that discovers `font_files/font-*`; test_structure.py, test_formula_exists.py, test_no_orphan_formulae.py (all parametrized over font list). | +| pyproject.toml + add-font CLI | New: uv-managed project with console script `add-font`; CLI adds/updates one font, runs cleanup + generator + tests. Run via `uv run add-font` (auto-installed by uv). | +| .github/workflows/ | New: e.g. `tests.yml` — Python test suite + `brew audit` (+ optional install). | +| PROJECT.md, .cursorrules, .claude/.../SKILL.md | Update “Adding a new font” and “Regenerating” to reference `uv run add-font` and the test suite. | + + +This gives you **tests for every font** (structure + formula presence + optional install) and a **single, script-driven path** to add or update a font with automatic validation. \ No newline at end of file diff --git a/.cursorrules b/.cursorrules new file mode 100644 index 0000000..00d178a --- /dev/null +++ b/.cursorrules @@ -0,0 +1,11 @@ +# Custom Font Tap — Cursor / LLM context + +Read PROJECT.md first for full project description, layout, and workflows. + +This repo follows multi-LLM conventions: PROJECT.md (canonical), .github/copilot-instructions.md (GitHub Copilot), .claude/skills/project-context/ (Claude Code / Agent SDK). See PROJECT.md § "LLM / agent context files". + +Summary: +- This repo is a Homebrew tap for custom fonts. Fonts live in font_files/font-/ with subdirs ttf/, otf/, web/, other_files/. +- Formula/*.rb are generated by .fontfoldercleanup/create_homebrew_formula.py — do not edit them by hand. +- To add a font: put folder in font_files/ as font-, run cleanup_font_folders.py then create_homebrew_formula.py. +- Scripts: Python 3 in .fontfoldercleanup/ (cleanup_font_folders.py, create_homebrew_formula.py). diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md new file mode 100644 index 0000000..d0d27f5 --- /dev/null +++ b/.github/copilot-instructions.md @@ -0,0 +1,17 @@ +--- +applyTo: "**" +--- + +# Custom Font Homebrew Tap — Project instructions + +**For full context, read [PROJECT.md](../PROJECT.md) at the repo root.** + +## What this repo is +- Homebrew tap for a personal font collection. Users run `brew tap ...` then `brew install font-`. +- Fonts live in `font_files/font-/` with exactly four subdirs: `ttf/`, `otf/`, `web/`, `other_files/`. + +## Rules +- Do **not** edit `Formula/*.rb` by hand. They are generated by `.fontfoldercleanup/create_homebrew_formula.py`. +- To add a font: add folder `font_files/font-/`, run `cleanup_font_folders.py` then `create_homebrew_formula.py`. +- Scripts are Python 3 in `.fontfoldercleanup/`: `cleanup_font_folders.py`, `create_homebrew_formula.py`. +- All font folders must use the `font-` prefix; only `.ttf` in ttf/, `.otf` in otf/, web fonts in web/, everything else in other_files/. diff --git "a/Icon\r" "b/Icon\r" new file mode 100644 index 0000000..e69de29 diff --git a/PROJECT.md b/PROJECT.md new file mode 100644 index 0000000..bc0e943 --- /dev/null +++ b/PROJECT.md @@ -0,0 +1,122 @@ +# Project: Custom Font Homebrew Tap + +This document describes the repository for Cursor, other LLMs, and automation agents. Read this first to understand structure, conventions, and workflows. + +## LLM / agent context files (conventions) + +This repo follows common conventions so multiple tools can discover project context: + +| File | Used by | +|------|--------| +| **PROJECT.md** (this file) | Canonical project description; any LLM or agent. | +| **.cursorrules** | [Cursor](https://cursor.com): root-level rules; points to PROJECT.md. | +| **.github/copilot-instructions.md** | [GitHub Copilot](https://docs.github.com/en/copilot) (VS Code, Visual Studio, GitHub.com): workspace instructions; references PROJECT.md. | +| **.claude/skills/project-context/SKILL.md** | [Claude Code](https://code.claude.com) / [Claude Agent SDK](https://docs.anthropic.com/en/docs/agent-sdk/overview): project skill; references PROJECT.md. | + +When adding or changing project rules, update **PROJECT.md** first, then sync the tool-specific files above if needed. + +## What This Repo Is + +A **Homebrew tap** that serves a personal collection of fonts. Users add the tap once, then install fonts with `brew install font-`. The repo is the tap source: it contains font assets and Homebrew Formula (Ruby) files that install them. + +- **Tap name (from README):** `genet-godzilla/fonts` +- **Install flow:** `brew tap ...` → `brew install font-` + +## Repository Layout + +``` +custom_font_tap/ +├── PROJECT.md # This file — canonical project overview for LLMs/agents +├── .cursorrules # Cursor: root rules (points here) +├── .github/ +│ └── copilot-instructions.md # GitHub Copilot / VS Code +├── .claude/skills/project-context/ +│ └── SKILL.md # Claude Code / Agent SDK +├── README.md # User-facing install instructions +├── .gitignore +├── font_files/ # Canonical font data (one folder per font) +│ └── font-/ # Each font: ttf/, otf/, web/, other_files/ +├── Formula/ # Homebrew formulae (*.rb), one per font +├── To Sort/ # Staging: new downloads not yet in font_files +├── .fontfoldercleanup/ # Scripts to organize folders and generate formulae +└── .cursor/rules/ # Cursor rule(s) for font folder structure +``` + +## Font Folder Structure (Required) + +Every font lives in `font_files/` in a folder named **`font-`**. Inside that folder only these four subdirectories are allowed: + +| Directory | Purpose | +|---------------|--------| +| `ttf/` | `.ttf` files | +| `otf/` | `.otf` files | +| `web/` | `.woff`, `.woff2`, `.eot`, `.svg` | +| `other_files/`| Everything else (licenses, PDFs, docs, etc.) | + +- All font folders **must** use the `font-` prefix. +- No other top-level files or dirs; anything else goes under `other_files/`. +- The rule and cleanup script are documented in `.cursor/rules/font-folder-structure.mdc`. + +## Key Files and Scripts + +| Path | Purpose | +|------|--------| +| `.fontfoldercleanup/cleanup_font_folders.py` | Organizes a font tree into `ttf/`, `otf/`, `web/`, `other_files/`. Run with `--path` (default `../font_files` relative to script). | +| `.fontfoldercleanup/create_homebrew_formula.py` | Scans `font_files/` for `font-*` dirs and writes/updates one `.rb` per font in `Formula/`. | +| `.fontfoldercleanup/tap_config.rb` | Reference tap config (meta-formula); not the main installer. | +| `Formula/font-.rb` | Generated; do not edit by hand. Class name is `Font` with formula name normalized (e.g. `font-graham_hand` → `FontGraham_hand`). | + +## Workflows + +### Adding a new font + +1. Get the font (e.g. extract a zip) into **`To Sort/`** or a temp folder. +2. Rename the folder to **`font-`** (lowercase, hyphens for spaces). +3. Move the folder into **`font_files/`**. +4. Run the cleanup script so files go into `ttf/`, `otf/`, `web/`, `other_files/`: + - From repo root: + `python3 .fontfoldercleanup/cleanup_font_folders.py --path font_files` + - Or from `.fontfoldercleanup/`: + `python3 cleanup_font_folders.py --path ../font_files` +5. Generate/update the formula: + `python3 .fontfoldercleanup/create_homebrew_formula.py` +6. Commit `font_files/font-/` and `Formula/font-.rb`. + +### Regenerating all formulae + +From repo root: + +```bash +python3 .fontfoldercleanup/create_homebrew_formula.py +``` + +This overwrites Formula files for every `font-*` directory in `font_files/`. + +### Only reorganizing folders (no formula changes) + +Point the cleanup script at the directory that contains font folders (e.g. `font_files` or a folder under `To Sort/`): + +```bash +python3 .fontfoldercleanup/cleanup_font_folders.py --path font_files +``` + +## Formula Conventions + +- **File:** `Formula/font-.rb` (e.g. `font-pixelon.rb`, `font-graham_hand.rb`). +- **Class:** `Font` where `` is the part after `font-`, with hyphens/underscores kept as in the folder name (e.g. `FontGraham_hand`, `FontMba-slice-mono`). +- **Source:** Formulae assume the archive unpacks as `homebrew-fonts-main/` and fonts live under `homebrew-fonts-main/font_files/font-/`. +- **Comment in formulae:** "This file was generated by the font folder cleanup script — Do not edit this file directly." Edits should go in the generator (`.fontfoldercleanup/create_homebrew_formula.py`) or in font folder structure/scripts. + +## Technical Notes + +- **Python:** Scripts are Python 3, standard library only (pathlib, shutil, argparse). +- **Ruby:** Formulae are standard Homebrew Formula; they use `share/"fonts/truetype"`, etc., and optional `share/""` for `other_files` content. +- **Homebrew URL in formulae:** `http://clancy.genet-godzilla.ts.net:3002/Fonts/homebrew-fonts/archive/main.tar.gz` (may need updating if the server or repo path changes). +- **Ignored (`.gitignore`):** `*.ofm`, `*.cfg`, `*.g2n`, `.DS_Store`, `.setup_complete`, `.env/`, `.idea/`. + +## Quick Reference for Agents + +- To **add a font:** ensure a `font-` folder exists in `font_files/` with the required four subdirs and files in the right places; run `cleanup_font_folders.py` then `create_homebrew_formula.py`. +- To **fix folder structure:** run `cleanup_font_folders.py` on the directory containing the `font-*` folders. +- To **sync Formula with font_files:** run `create_homebrew_formula.py`; do not edit Formula `*.rb` files by hand. +- **To Sort/** is for unsorted downloads; fonts are only “in the tap” when they are under `font_files/` and have a matching file in `Formula/`. diff --git a/To Sort/copixel-font-1764372079-0/Befonts-License.txt b/To Sort/copixel-font-1764372079-0/Befonts-License.txt new file mode 100644 index 0000000..979ae73 --- /dev/null +++ b/To Sort/copixel-font-1764372079-0/Befonts-License.txt @@ -0,0 +1,2 @@ +License: Free for Personal Use +Link: https://befonts.com/copixel-font.html diff --git a/To Sort/copixel-font-1764372079-0/Copixel-Demo-BF6873ccc4785f8.otf b/To Sort/copixel-font-1764372079-0/Copixel-Demo-BF6873ccc4785f8.otf new file mode 100644 index 0000000..d8b7b20 Binary files /dev/null and b/To Sort/copixel-font-1764372079-0/Copixel-Demo-BF6873ccc4785f8.otf differ diff --git a/To Sort/depixel/Fonts/depixelbreit.otf b/To Sort/depixel/Fonts/depixelbreit.otf new file mode 100644 index 0000000..b1c7f4a Binary files /dev/null and b/To Sort/depixel/Fonts/depixelbreit.otf differ diff --git a/To Sort/depixel/Fonts/depixelbreitfett.otf b/To Sort/depixel/Fonts/depixelbreitfett.otf new file mode 100644 index 0000000..2872ff2 Binary files /dev/null and b/To Sort/depixel/Fonts/depixelbreitfett.otf differ diff --git a/To Sort/depixel/Fonts/depixelhalbfett.otf b/To Sort/depixel/Fonts/depixelhalbfett.otf new file mode 100644 index 0000000..0ad9e48 Binary files /dev/null and b/To Sort/depixel/Fonts/depixelhalbfett.otf differ diff --git a/To Sort/depixel/Fonts/depixelillegible.otf b/To Sort/depixel/Fonts/depixelillegible.otf new file mode 100644 index 0000000..112e642 Binary files /dev/null and b/To Sort/depixel/Fonts/depixelillegible.otf differ diff --git a/To Sort/depixel/Fonts/depixelklein.otf b/To Sort/depixel/Fonts/depixelklein.otf new file mode 100644 index 0000000..5548a46 Binary files /dev/null and b/To Sort/depixel/Fonts/depixelklein.otf differ diff --git a/To Sort/depixel/Fonts/depixelschmal.otf b/To Sort/depixel/Fonts/depixelschmal.otf new file mode 100644 index 0000000..8a94b16 Binary files /dev/null and b/To Sort/depixel/Fonts/depixelschmal.otf differ diff --git a/To Sort/depixel/Licenses/Desktop EULA 1.6.txt b/To Sort/depixel/Licenses/Desktop EULA 1.6.txt new file mode 100644 index 0000000..f876583 --- /dev/null +++ b/To Sort/depixel/Licenses/Desktop EULA 1.6.txt @@ -0,0 +1,80 @@ +The Fontspring Desktop Font End User License Agreement +Version 1.6.0 - March 13, 2014 + +By downloading and/or installing font software (“Font”) offered by Fontspring or its distributors, you (“Licensee”) agree to be bound by the following terms and conditions of this End User Licensing Agreement (“EULA”): + +1. Right Granted +Fontspring grants Licensee a perpetual, worldwide, non-exclusive and non-transferrable license to: +a. Use the Font to create graphics for display on any surface including computer screens, television screens, paper, t-shirts or any other surface where the image will be a fixed size. + +b. Licensee may embed or link the Font in accordance with the rules described in Section 4 “Embedding and Linking” of this EULA. + +2. Requirements and Restrictions +a. Products +Licensee may not use the Font to create alphabet or letterform products for resale where the product consists of individual letterforms, including rubber stamps, die-cut products, stencil products, or adhesive sticker alphabet products where the likeness of the Font can be reproduced and the end-user of said products can create their own typesetting. An extended license may be available for an additional fee. + +Licensee may create typographic products using the Font if the product consists of commonly recognized words or phrases. For example: a rubber stamp that has the words "Thank You" or a sticker that says "Great!" + +b. Dingbats and Illustrations +Licensee may NOT use illustrations or images in the Font OTHER THAN letterforms, numbers, punctuation marks, diacritics, etc., in a manner where the illustration or image becomes the primary aspect of a product for resale. For example, a dingbat image in the font can not be the sole design element on a coffee cup, t-shirt, greeting card, etc., intended for resale. An extended license may be available for an additional fee. + +c. Users +The Font may be simultaneously used by no more than the number of users specified in the Receipt. A "user" is a single person or single machine, at the discretion of the Licensee. All users must belong to the same company or household purchasing the font except for temporary use by third parties as described in Section 3 “Provision to Third Parties” of this EULA. + +3. Provision to Third Parties +Licensee may temporarily provide the Font to a graphic designer, printer, agent or independent contractor who is working on behalf of the Licensee, ONLY IF the developer, agent or independent contractor (1) agrees in writing to use the Font exclusively for Licensee’s work, according to the terms of this EULA, and (2) retains no copies of the Font upon completion of the work. + +Licensee may not otherwise distribute the Font to third parties or make the Font publicly accessible except by embedding or linking in accordance with this EULA. + +4. Embedding and Linking +a. Document Embedding (including PDF, Microsoft Word® & Microsoft Powerpoint®) + 1. Documents embedding the Font and sent to third parties, must be read-only by those recipients. + 2. Documents embedding the Font and created for in-house use or sent to third parties working on behalf of the Licensee as described in Section 3 “Provision to Third Parties” may be editable. + +b. Flash and Silverlight Embedding +Licensee may embed the Font into Flash or Silverlight with the following restrictions: + 1. The Font must be subset to include only the glyphs necessary for displaying the work. + 2. The text rendered in the Font must not be manipulatable by an end user. + 3. All care must be taken to prevent unauthorized users from accessing the Font. + +c. @font-face Cascading Style Sheet ("CSS") Linking +Licensee may not link the Font to web sites using the @font-face selector in CSS. An extended license may be available for an additional fee. + +5. Term +This EULA grants a perpetual license for the rights set forth in Paragraph 1 unless and until the EULA terminates under Paragraph 8. Fontspring will not charge additional fees post purchase, annually or otherwise. + +6. Other Usage +Licenses for @font-face embedding, computer applications and games, installable interactive books, software, mobile applications and games, Ebooks and Epubs, product creation websites, website template distribution, website templates, and other uses not allowed by this EULA may be available for an additional fee. Contact Fontspring at support@fontspring.com for more information. + +7. Modifications +Licensee may import and alter the bezier outlines of the Font in a drawing program. + +Licensee may not modify the Font or create derivative works based on the Font without prior written consent from Fontspring or the owning foundry EXCEPT THAT Licensee may generate files necessary for embedding or linking in accordance with this EULA. + +8. Copyright +The Font is protected by copyright law. The Foundry is the sole, exclusive owner of all intellectual property rights, including rights under copyright and trademark law. Licensee agrees not to use the Font in any manner that infringes the intellectual property rights of the Foundry or violates the terms of this EULA. Licensee will be held legally responsible, and indemnifies Fontspring, for any infringements on the foundry's rights caused by failure to abide by the terms of this EULA. + +9. Termination +This EULA is effective until terminated. If Licensee fails to comply with any term of this EULA, Fontspring may terminate the EULA with 30 days notice. This EULA will terminate automatically 30 days after the issuance of such notice. + +10. Disclaimer and Limited Warranty +Fontspring warrants the Product to be free from defects in materials and workmanship under normal use for a period of twenty one (21) days from the date of delivery as shown on Receipt. Fontspring's entire liability, and Licensee’s exclusive remedy, for a defective product shall be, at Fontspring's election, either (1) return of purchase price or (2) replacement of any such product that is returned to Fontspring with a copy of the Receipt. Fontspring shall have no responsibility to replace the product or refund the purchase price if failure results from accident, abuse or misapplication, or if any product is lost or damaged due to theft, fire, or negligence. Any replacement product will be warranted for twenty one (21) days. This warranty gives Licensee specific legal rights. Licensee may have other rights, which vary from state to state. + +EXCEPT AS EXPRESSLY PROVIDED ABOVE, THE PRODUCT, IS PROVIDED “AS IS”. FONTSPRING MAKES NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + +The entire risk as to the quality and performance of the Product rests upon Licensee. Neither Fontspring nor the Foundry warrants that the functions contained in the Product will meet Licensee’s requirements or that the operation of the software will be uninterrupted or error free. + +FONTSPRING SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, CONSEQUENTIAL, OR INCIDENTAL DAMAGES (INCLUDING DAMAGES FROM LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, AND THE LIKE) ARISING OUT OF THE USE OF OR INABILITY TO USE THE PRODUCT EVEN IF Fontspring OR THE FOUNDRY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +Because some states do not allow the exclusion or limitation of liability for consequential or incidental damages, the above limitation may not apply to Licensee. + +11. Governing Law +This EULA is governed by the laws of the United States of America and the State of Delaware. + +12. Entire Agreement +This EULA, in conjunction with the receipt (“Receipt”) that accompanies each Font licensed from Fontspring or its distributors, constitutes the entire agreement between Fontspring and Licensee. + +13. Modification +The Parties may modify or amend this EULA in writing. + +14. Waiver. The waiver of one breach or default hereunder shall not constitute the waiver of any subsequent breach or default. \ No newline at end of file diff --git a/To Sort/depixel/Licenses/Webfont EULA 1.6.txt b/To Sort/depixel/Licenses/Webfont EULA 1.6.txt new file mode 100644 index 0000000..1f2b84d --- /dev/null +++ b/To Sort/depixel/Licenses/Webfont EULA 1.6.txt @@ -0,0 +1,57 @@ +The Fontspring Webfont End User License Agreement +Version 1.6.0 - March 13, 2014 + +By downloading, installing and/or embedding font software (“Webfont”) offered by Fontspring or its distributors, you (“Licensee”) agree to be bound by the following terms and conditions of this End User Licensing Agreement (“EULA”): + +1. Right Granted +Fontspring grants Licensee a perpetual, worldwide, non-exclusive and non-transferrable license to link the Webfont to Websites using the @font-face selector in CSS files. + +2. Requirements and Restrictions +Licensee agrees to abide by the following requirements and restrictions: +a. Licensee must use the Webfont provided by Fontspring under this EULA. Licensee may not link to the full, CFF OpenType or TrueType font designed for desktop installation. +b. Licensee must include the entire commented header in the provided CSS file. +c. The total traffic of the Website(s), measured in pageviews per month, may be no greater than the number of pageviews specified in the Receipt. +d. Licensee may only install the Webfont on Websites that it owns or controls. +e. Licensee may embed Webfont in reports generated by the Website(s), provided that Licensee does not sell the reports for profit. + +3. Provision to Third Parties +Licensee may temporarily provide the Webfont to a website developer, agent or independent contractor, who is working on behalf of the Licensee, ONLY IF the developer, agent or independent contractor (1) agrees in writing to use the Font exclusively for Licensee’s work, according to the terms of this EULA, and (2) retains no copies of the Font upon completion of the work. + +Licensee may not otherwise distribute the Webfont to third parties or make the Webfont publicly accessible or available except by embedding or linking in accordance with this EULA. + +4. Term +This EULA grants a perpetual license for the rights set forth in Paragraph 1 unless and until the EULA terminates under Paragraph 8. Fontspring will not charge additional fees post purchase, annually or otherwise. + +5. Other Usage +Licenses for desktop use, computer applications and games, installable interactive books, software, mobile applications and games, Ebooks and Epubs, product creation websites, website template distribution, website templates, and other uses not allowed by this EULA may be available for an additional fee. Contact Fontspring at support@fontspring.com for more information. + +6. Modifications +Licensee may not modify the Webfont or create derivative works based upon the Webfont without prior written consent from Fontspring or the owning foundry EXCEPT THAT Licensee may generate files necessary for embedding or linking in accordance with this EULA. + +7. Copyright +The Webfont is protected by copyright law. The Foundry is the sole, exclusive owner of all intellectual property rights, including rights under copyright and trademark law. Licensee agrees not to use the Webfont in any manner that infringes the intellectual property rights of the Foundry or violates the terms of this EULA. Licensee will be held legally responsible, and indemnifies Fontspring, for any infringements on the foundry's rights caused by failure to abide by the terms of this EULA. + +8. Termination +This EULA is effective until terminated. If Licensee fails to comply with any term of this EULA, Fontspring may terminate the EULA with 30 days notice. This EULA will terminate automatically 30 days after the issuance of such notice. + +9. Disclaimer and Limited Warranty +Fontspring warrants the Product to be free from defects in materials and workmanship under normal use for a period of twenty one (21) days from the date of delivery as shown on Receipt. Fontspring's entire liability, and Licensee’s exclusive remedy, for a defective product shall be, at Fontspring's election, either (1) return of purchase price or (2) replacement of any such product that is returned to Fontspring with a copy of the Receipt. Fontspring shall have no responsibility to replace the product or refund the purchase price if failure results from accident, abuse or misapplication, or if any product is lost or damaged due to theft, fire, or negligence. Any replacement product will be warranted for twenty one (21) days. This warranty gives Licensee specific legal rights. Licensee may have other rights, which vary from state to state. + +EXCEPT AS EXPRESSLY PROVIDED ABOVE, THE PRODUCT, IS PROVIDED “AS IS”. FONTSPRING MAKES NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + +The entire risk as to the quality and performance of the Product rests upon Licensee. Neither Fontspring nor the Foundry warrants that the functions contained in the Product will meet Licensee’s requirements or that the operation of the software will be uninterrupted or error free. + +FONTSPRING SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, CONSEQUENTIAL, OR INCIDENTAL DAMAGES (INCLUDING DAMAGES FROM LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, AND THE LIKE) ARISING OUT OF THE USE OF OR INABILITY TO USE THE PRODUCT EVEN IF FONTSPRING OR THE FOUNDRY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +Because some states do not allow the exclusion or limitation of liability for consequential or incidental damages, the above limitation may not apply to Licensee. + +10. Governing Law +This EULA is governed by the laws of the United States of America and the State of Delaware. + +11. Entire Agreement +This EULA, in conjunction with the receipt (“Receipt”) that accompanies each Font licensed from Fontspring or its distributors, constitutes the entire agreement between Fontspring and Licensee. + +12. Modification +The Parties may modify or amend this EULA in writing. + +13. Waiver. The waiver of one breach or default hereunder shall not constitute the waiver of any subsequent breach or default. diff --git a/To Sort/depixel/Reference/How_to_use_webfonts.html b/To Sort/depixel/Reference/How_to_use_webfonts.html new file mode 100644 index 0000000..1f4c2f8 --- /dev/null +++ b/To Sort/depixel/Reference/How_to_use_webfonts.html @@ -0,0 +1,230 @@ + + + + + + + + + + +How to Use Webfonts + + + + +
+ +
+
+
+

Installing Webfonts

+ +

Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.

+ +

1. Upload your webfonts

+

You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.

+ +

2. Include the webfont stylesheet

+

A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the Fontspring blog post about it. The code for it is as follows:

+ + + +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} + +

We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:

+ <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + +

3. Modify your own stylesheet

+

To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:

+p { font-family: 'MyWebFont', Arial, sans-serif; } + +

4. Test

+

Getting webfonts to work cross-browser can be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.

+
+ + +
+ +
+ +
+ + + + diff --git a/To Sort/depixel/Reference/Release Notes.txt b/To Sort/depixel/Reference/Release Notes.txt new file mode 100644 index 0000000..bd5ab99 --- /dev/null +++ b/To Sort/depixel/Reference/Release Notes.txt @@ -0,0 +1,10 @@ +DePixel v1.0 +January 13 2017 + +files included: +DePixel Illegible v1.0 +DePixel Schmal v1.0 +DePixel Klein v1.0 +DePixel Breit v1.0 +DePixel Bold v1.0 +DePixel Breit Fett v1.0 \ No newline at end of file diff --git a/To Sort/depixel/Reference/depixel.pdf b/To Sort/depixel/Reference/depixel.pdf new file mode 100644 index 0000000..e72ab65 Binary files /dev/null and b/To Sort/depixel/Reference/depixel.pdf differ diff --git a/To Sort/depixel/Webfonts/depixel_bold_macroman/depixelhalbfett-demo.html b/To Sort/depixel/Webfonts/depixel_bold_macroman/depixelhalbfett-demo.html new file mode 100644 index 0000000..af10307 --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_bold_macroman/depixelhalbfett-demo.html @@ -0,0 +1,382 @@ + + + + + + + + + + + + +DePixel Bold Specimen + + + + + + +
+ + + +
+ + +
+ +
+
+
AaBb
+
+
+ +
+
A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;
+
+
+
+ + + + + + + + + + + + + + + + +
10abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
11abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
12abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
13abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
14abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
16abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
18abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
20abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
24abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
30abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
36abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
48abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
60abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
72abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
90abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
+ +
+ +
+ + + +
+ + +
+
body
body
body
body
+
+ bodyDePixel Bold +
+
+ bodyArial +
+
+ bodyVerdana +
+
+ bodyGeorgia +
+ + + +
+ + +
+ +
+

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+
+
+

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+ +
+ +
+ +
+
+

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+ +
+ +
+ +
+
+

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+ +
+ + + +
+
+

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+ +
+
+

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+ +
+
+

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+ +
+ +
+ +
+
+

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+ +
+ + + + +
+ +
+ +
+ +
+

Lorem Ipsum Dolor

+

Etiam porta sem malesuada magna mollis euismod

+ + +
+
+
+
+

Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

+ + +

Pellentesque ornare sem

+ +

Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit.

+ +

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

+ +

Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur.

+ +

Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla.

+ +

Cras mattis consectetur

+ +

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum.

+ +

Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.

+
+ + +
+ +
+ + + + + + +
+
+
+ +

Language Support

+

The subset of DePixel Bold in this kit supports the following languages:
+ + Albanian, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Basque, Bislama, Breton, Cebuano, Chamorro, Corsican, Danish, Demo, Dutch, English, Faroese, Fijian, Finnish, French Creole (Saint Lucia), Frisian, Galician, Genoese, German, Gilbertese (Kiribati), Greenlandic, Haitian Creole, Hiligaynon, Hmong, Hopi, Ibanag, Icelandic, Iloko (Ilokano), Indonesian, Interglossa (Glosa), Interlingua, Irish (Gaelic), Italian, Jèrriais, Latin Basic, Lojban, Lombard, Luxembourgian, Malagasy, Manx, Mohawk, Norfolk/Pitcairnese, Norwegian, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Portuguese, Potawatomi, Rhaeto-Romance, Romansh (Rumantsch), Rotokas, Sami (Lule), Sardinian (Sardu), Scots (Gaelic), Seychellois Creole (Seselwa), Shona, Sicilian, Somali, Southern Ndebele, Spanish, Swahili, Swati/Swazi, Swedish, Tagalog (Filipino/Pilipino), Tetum (Tetun), Tok Pisin, ubasic, Uyghur (Latinized), Volapük, Walloon, Warlpiri, Xhosa, Yapese, Zulu

+

Glyph Chart

+

The subset of DePixel Bold in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.

+
+ +
+
+ + +
+
+ + +
+ +
+ +
+
+
+

Installing Webfonts

+ +

Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.

+ +

1. Upload your webfonts

+

You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.

+ +

2. Include the webfont stylesheet

+

A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the Fontspring blog post about it. The code for it is as follows:

+ + + +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} + + +

We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:

+ <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + +

3. Modify your own stylesheet

+

To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:

+p { font-family: 'MyWebFont', Arial, sans-serif; } + +

4. Test

+

Getting webfonts to work cross-browser can be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.

+
+ + +
+ +
+ +
+ +
+ + diff --git a/To Sort/depixel/Webfonts/depixel_bold_macroman/depixelhalbfett-webfont.eot b/To Sort/depixel/Webfonts/depixel_bold_macroman/depixelhalbfett-webfont.eot new file mode 100644 index 0000000..39202e1 Binary files /dev/null and b/To Sort/depixel/Webfonts/depixel_bold_macroman/depixelhalbfett-webfont.eot differ diff --git a/To Sort/depixel/Webfonts/depixel_bold_macroman/depixelhalbfett-webfont.svg b/To Sort/depixel/Webfonts/depixel_bold_macroman/depixelhalbfett-webfont.svg new file mode 100644 index 0000000..d7dff76 --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_bold_macroman/depixelhalbfett-webfont.svg @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/To Sort/depixel/Webfonts/depixel_bold_macroman/depixelhalbfett-webfont.ttf b/To Sort/depixel/Webfonts/depixel_bold_macroman/depixelhalbfett-webfont.ttf new file mode 100644 index 0000000..fd94ffa Binary files /dev/null and b/To Sort/depixel/Webfonts/depixel_bold_macroman/depixelhalbfett-webfont.ttf differ diff --git a/To Sort/depixel/Webfonts/depixel_bold_macroman/depixelhalbfett-webfont.woff b/To Sort/depixel/Webfonts/depixel_bold_macroman/depixelhalbfett-webfont.woff new file mode 100644 index 0000000..0a879a0 Binary files /dev/null and b/To Sort/depixel/Webfonts/depixel_bold_macroman/depixelhalbfett-webfont.woff differ diff --git a/To Sort/depixel/Webfonts/depixel_bold_macroman/depixelhalbfett-webfont.woff2 b/To Sort/depixel/Webfonts/depixel_bold_macroman/depixelhalbfett-webfont.woff2 new file mode 100644 index 0000000..9a29619 Binary files /dev/null and b/To Sort/depixel/Webfonts/depixel_bold_macroman/depixelhalbfett-webfont.woff2 differ diff --git a/To Sort/depixel/Webfonts/depixel_bold_macroman/specimen_files/easytabs.js b/To Sort/depixel/Webfonts/depixel_bold_macroman/specimen_files/easytabs.js new file mode 100644 index 0000000..167f53b --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_bold_macroman/specimen_files/easytabs.js @@ -0,0 +1,7 @@ +(function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} +if(typeof param.defaultContent=="number") +{var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} +$(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} +function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") +{$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} +$(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); \ No newline at end of file diff --git a/To Sort/depixel/Webfonts/depixel_bold_macroman/specimen_files/grid_12-825-55-15.css b/To Sort/depixel/Webfonts/depixel_bold_macroman/specimen_files/grid_12-825-55-15.css new file mode 100644 index 0000000..3d6aef7 --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_bold_macroman/specimen_files/grid_12-825-55-15.css @@ -0,0 +1,129 @@ +/*Notes about grid: +Columns: 12 +Grid Width: 825px +Column Width: 55px +Gutter Width: 15px +-------------------------------*/ + + + +.section {margin-bottom: 18px; +} +.section:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;} +.section {*zoom: 1;} + +.section .firstcolumn, +.section .firstcol {margin-left: 0;} + + +/* Border on left hand side of a column. */ +.border { + padding-left: 7px; + margin-left: 7px; + border-left: 1px solid #eee; +} + +/* Border with more whitespace, spans one column. */ +.colborder { + padding-left: 42px; + margin-left: 42px; + border-left: 1px solid #eee; +} + + + +/* The Grid Classes */ +.grid1, .grid1_2cols, .grid1_3cols, .grid1_4cols, .grid2, .grid2_3cols, .grid2_4cols, .grid3, .grid3_2cols, .grid3_4cols, .grid4, .grid4_3cols, .grid5, .grid5_2cols, .grid5_3cols, .grid5_4cols, .grid6, .grid6_4cols, .grid7, .grid7_2cols, .grid7_3cols, .grid7_4cols, .grid8, .grid8_3cols, .grid9, .grid9_2cols, .grid9_4cols, .grid10, .grid10_3cols, .grid10_4cols, .grid11, .grid11_2cols, .grid11_3cols, .grid11_4cols, .grid12 +{margin-left: 15px;float: left;display: inline; overflow: hidden;} + + +.width1, .grid1, .span-1 {width: 55px;} +.width1_2cols,.grid1_2cols {width: 20px;} +.width1_3cols,.grid1_3cols {width: 8px;} +.width1_4cols,.grid1_4cols {width: 2px;} +.input_width1 {width: 49px;} + +.width2, .grid2, .span-2 {width: 125px;} +.width2_3cols,.grid2_3cols {width: 31px;} +.width2_4cols,.grid2_4cols {width: 20px;} +.input_width2 {width: 119px;} + +.width3, .grid3, .span-3 {width: 195px;} +.width3_2cols,.grid3_2cols {width: 90px;} +.width3_4cols,.grid3_4cols {width: 37px;} +.input_width3 {width: 189px;} + +.width4, .grid4, .span-4 {width: 265px;} +.width4_3cols,.grid4_3cols {width: 78px;} +.input_width4 {width: 259px;} + +.width5, .grid5, .span-5 {width: 335px;} +.width5_2cols,.grid5_2cols {width: 160px;} +.width5_3cols,.grid5_3cols {width: 101px;} +.width5_4cols,.grid5_4cols {width: 72px;} +.input_width5 {width: 329px;} + +.width6, .grid6, .span-6 {width: 405px;} +.width6_4cols,.grid6_4cols {width: 90px;} +.input_width6 {width: 399px;} + +.width7, .grid7, .span-7 {width: 475px;} +.width7_2cols,.grid7_2cols {width: 230px;} +.width7_3cols,.grid7_3cols {width: 148px;} +.width7_4cols,.grid7_4cols {width: 107px;} +.input_width7 {width: 469px;} + +.width8, .grid8, .span-8 {width: 545px;} +.width8_3cols,.grid8_3cols {width: 171px;} +.input_width8 {width: 539px;} + +.width9, .grid9, .span-9 {width: 615px;} +.width9_2cols,.grid9_2cols {width: 300px;} +.width9_4cols,.grid9_4cols {width: 142px;} +.input_width9 {width: 609px;} + +.width10, .grid10, .span-10 {width: 685px;} +.width10_3cols,.grid10_3cols {width: 218px;} +.width10_4cols,.grid10_4cols {width: 160px;} +.input_width10 {width: 679px;} + +.width11, .grid11, .span-11 {width: 755px;} +.width11_2cols,.grid11_2cols {width: 370px;} +.width11_3cols,.grid11_3cols {width: 241px;} +.width11_4cols,.grid11_4cols {width: 177px;} +.input_width11 {width: 749px;} + +.width12, .grid12, .span-12 {width: 825px;} +.input_width12 {width: 819px;} + +/* Subdivided grid spaces */ +.emptycols_left1, .prepend-1 {padding-left: 70px;} +.emptycols_right1, .append-1 {padding-right: 70px;} +.emptycols_left2, .prepend-2 {padding-left: 140px;} +.emptycols_right2, .append-2 {padding-right: 140px;} +.emptycols_left3, .prepend-3 {padding-left: 210px;} +.emptycols_right3, .append-3 {padding-right: 210px;} +.emptycols_left4, .prepend-4 {padding-left: 280px;} +.emptycols_right4, .append-4 {padding-right: 280px;} +.emptycols_left5, .prepend-5 {padding-left: 350px;} +.emptycols_right5, .append-5 {padding-right: 350px;} +.emptycols_left6, .prepend-6 {padding-left: 420px;} +.emptycols_right6, .append-6 {padding-right: 420px;} +.emptycols_left7, .prepend-7 {padding-left: 490px;} +.emptycols_right7, .append-7 {padding-right: 490px;} +.emptycols_left8, .prepend-8 {padding-left: 560px;} +.emptycols_right8, .append-8 {padding-right: 560px;} +.emptycols_left9, .prepend-9 {padding-left: 630px;} +.emptycols_right9, .append-9 {padding-right: 630px;} +.emptycols_left10, .prepend-10 {padding-left: 700px;} +.emptycols_right10, .append-10 {padding-right: 700px;} +.emptycols_left11, .prepend-11 {padding-left: 770px;} +.emptycols_right11, .append-11 {padding-right: 770px;} +.pull-1 {margin-left: -70px;} +.push-1 {margin-right: -70px;margin-left: 18px;float: right;} +.pull-2 {margin-left: -140px;} +.push-2 {margin-right: -140px;margin-left: 18px;float: right;} +.pull-3 {margin-left: -210px;} +.push-3 {margin-right: -210px;margin-left: 18px;float: right;} +.pull-4 {margin-left: -280px;} +.push-4 {margin-right: -280px;margin-left: 18px;float: right;} \ No newline at end of file diff --git a/To Sort/depixel/Webfonts/depixel_bold_macroman/specimen_files/specimen_stylesheet.css b/To Sort/depixel/Webfonts/depixel_bold_macroman/specimen_files/specimen_stylesheet.css new file mode 100644 index 0000000..aecc43c --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_bold_macroman/specimen_files/specimen_stylesheet.css @@ -0,0 +1,396 @@ +@import url('grid_12-825-55-15.css'); + +/* + CSS Reset by Eric Meyer - Released under Public Domain + http://meyerweb.com/eric/tools/css/reset/ +*/ +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, font, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, center, dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, table, +caption, tbody, tfoot, thead, tr, th, td + {margin: 0;padding: 0;border: 0;outline: 0; + font-size: 100%;vertical-align: baseline; + background: transparent;} +body {line-height: 1;} +ol, ul {list-style: none;} +blockquote, q {quotes: none;} +blockquote:before, blockquote:after, +q:before, q:after {content: ''; content: none;} +:focus {outline: 0;} +ins {text-decoration: none;} +del {text-decoration: line-through;} +table {border-collapse: collapse;border-spacing: 0;} + + + + +body { + color: #000; + background-color: #dcdcdc; +} + +a { + text-decoration: none; + color: #1883ba; +} + +h1{ + font-size: 32px; + font-weight: normal; + font-style: normal; + margin-bottom: 18px; +} + +h2{ + font-size: 18px; +} + +#container { + width: 865px; + margin: 0px auto; +} + + +#header { + padding: 20px; + font-size: 36px; + background-color: #000; + color: #fff; +} + +#header span { + color: #666; +} +#main_content { + background-color: #fff; + padding: 60px 20px 20px; +} + + +#footer p { + margin: 0; + padding-top: 10px; + padding-bottom: 50px; + color: #333; + font: 10px Arial, sans-serif; +} + +.tabs { + width: 100%; + height: 31px; + background-color: #444; +} +.tabs li { + float: left; + margin: 0; + overflow: hidden; + background-color: #444; +} +.tabs li a { + display: block; + color: #fff; + text-decoration: none; + font: bold 11px/11px 'Arial'; + text-transform: uppercase; + padding: 10px 15px; + border-right: 1px solid #fff; +} + +.tabs li a:hover { + background-color: #00b3ff; + +} + +.tabs li.active a { + color: #000; + background-color: #fff; +} + + + +div.huge { + + font-size: 300px; + line-height: 1em; + padding: 0; + letter-spacing: -.02em; + overflow: hidden; +} +div.glyph_range { + font-size: 72px; + line-height: 1.1em; +} + +.size10{ font-size: 10px; } +.size11{ font-size: 11px; } +.size12{ font-size: 12px; } +.size13{ font-size: 13px; } +.size14{ font-size: 14px; } +.size16{ font-size: 16px; } +.size18{ font-size: 18px; } +.size20{ font-size: 20px; } +.size24{ font-size: 24px; } +.size30{ font-size: 30px; } +.size36{ font-size: 36px; } +.size48{ font-size: 48px; } +.size60{ font-size: 60px; } +.size72{ font-size: 72px; } +.size90{ font-size: 90px; } + + +.psample_row1 { height: 120px;} +.psample_row1 { height: 120px;} +.psample_row2 { height: 160px;} +.psample_row3 { height: 160px;} +.psample_row4 { height: 160px;} + +.psample { + overflow: hidden; + position: relative; +} +.psample p { + line-height: 1.3em; + display: block; + overflow: hidden; + margin: 0; +} + +.psample span { + margin-right: .5em; +} + +.white_blend { + width: 100%; + height: 61px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNrs3TsKgFAMRUE/eer+NxztxMYuEWQG3ECKwwUF58ycAKixOAGAyAKILAAiCyCyACILgMgCiCyAyAIgsgAiCyCyAIgsgMgCiCwAIgsgsgAiC4DIAogsACIL0CWuZ3UGgLrIhjMA1EV2OAOAJQtgyQLwjOzmDAAiCyCyAIgsQFtkd2cAEFkAkQVAZAHaIns4A4AlC2DJAiCyACILILIAiCzAV5H1dQGAJQsgsgCILIDIAvwisl58AViyAJYsACILILIAIgvAe2T9EhxAZAFEFgCRBeiL7HAGgLrIhjMAWLIAliwAt1OAAQDwygTBulLIlQAAAABJRU5ErkJggg==); + position: absolute; + bottom: 0; +} +.black_blend { + width: 100%; + height: 61px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNrs3TEKhTAQRVGjibr/9QoxhY2N3Ywo50A28IrLwP9g6b1PAMSYTQAgsgAiC4DIAogsgMgCILIAIgsgsgCILIDIAogsACILILIAIguAyAKILIDIAiCyACILgMgCZCnjLWYAiFGvB0BQZJsZAFyyAC5ZAO6RXc0AILIAIguAyAKkRXYzA4DIAogsACILkBbZ3QwALlkAlywAIgsgsgAiC4DIArwVWf8uAHDJAogsACILILIAv4isH74AXLIALlkARBZAZAFEFoDnyPokOIDIAogsACILkBfZZgaAuMhWMwC4ZAE+p4x3mAEgxinAAJ+XBbPWGkwAAAAAAElFTkSuQmCC); + position: absolute; + bottom: 0; +} +.fullreverse { + background: #000 !important; + color: #fff !important; + margin-left: -20px; + padding-left: 20px; + margin-right: -20px; + padding-right: 20px; + padding: 20px; + margin-bottom:0; +} + + +.sample_table td { + padding-top: 3px; + padding-bottom:5px; + padding-left: 5px; + vertical-align: middle; + line-height: 1.2em; +} + +.sample_table td:first-child { + background-color: #eee; + text-align: right; + padding-right: 5px; + padding-left: 0; + padding: 5px; + font: 11px/12px "Courier New", Courier, mono; +} + +code { + white-space: pre; + background-color: #eee; + display: block; + padding: 10px; + margin-bottom: 18px; + overflow: auto; +} + + +.bottom,.last {margin-bottom:0 !important; padding-bottom:0 !important;} + +.box { + padding: 18px; + margin-bottom: 18px; + background: #eee; +} + +.reverse,.reversed { background: #000 !important;color: #fff !important; border: none !important;} + +#bodycomparison { + position: relative; + overflow: hidden; + font-size: 72px; + height: 90px; + white-space: nowrap; +} + +#bodycomparison div{ + font-size: 72px; + line-height: 90px; + display: inline; + margin: 0 15px 0 0; + padding: 0; +} + +#bodycomparison div span{ + font: 10px Arial; + position: absolute; + left: 0; +} +#xheight { + float: none; + position: absolute; + color: #d9f3ff; + font-size: 72px; + line-height: 90px; +} + +.fontbody { + position: relative; +} +.arialbody{ + font-family: Arial; + position: relative; +} +.verdanabody{ + font-family: Verdana; + position: relative; +} +.georgiabody{ + font-family: Georgia; + position: relative; +} + +/* @group Layout page + */ + +#layout h1 { + font-size: 36px; + line-height: 42px; + font-weight: normal; + font-style: normal; +} + +#layout h2 { + font-size: 24px; + line-height: 23px; + font-weight: normal; + font-style: normal; +} + +#layout h3 { + font-size: 22px; + line-height: 1.4em; + margin-top: 1em; + font-weight: normal; + font-style: normal; +} + + +#layout p.byline { + font-size: 12px; + margin-top: 18px; + line-height: 12px; + margin-bottom: 0; +} +#layout p { + font-size: 14px; + line-height: 21px; + margin-bottom: .5em; +} + +#layout p.large{ + font-size: 18px; + line-height: 26px; +} + +#layout .sidebar p{ + font-size: 12px; + line-height: 1.4em; +} + +#layout p.caption { + font-size: 10px; + margin-top: -16px; + margin-bottom: 18px; +} + +/* @end */ + +/* @group Glyphs */ + +#glyph_chart div{ + background-color: #d9f3ff; + color: black; + float: left; + font-size: 36px; + height: 1.2em; + line-height: 1.2em; + margin-bottom: 1px; + margin-right: 1px; + text-align: center; + width: 1.2em; + position: relative; + padding: .6em .2em .2em; +} + +#glyph_chart div p { + position: absolute; + left: 0; + top: 0; + display: block; + text-align: center; + font: bold 9px Arial, sans-serif; + background-color: #3a768f; + width: 100%; + color: #fff; + padding: 2px 0; +} + + +#glyphs h1 { + font-family: Arial, sans-serif; +} +/* @end */ + +/* @group Installing */ + +#installing { + font: 13px Arial, sans-serif; +} + +#installing p, +#glyphs p{ + line-height: 1.2em; + margin-bottom: 18px; + font: 13px Arial, sans-serif; +} + + + +#installing h3{ + font-size: 15px; + margin-top: 18px; +} + +/* @end */ + +#rendering h1 { + font-family: Arial, sans-serif; +} +.render_table td { + font: 11px "Courier New", Courier, mono; + vertical-align: middle; +} + + diff --git a/To Sort/depixel/Webfonts/depixel_bold_macroman/stylesheet.css b/To Sort/depixel/Webfonts/depixel_bold_macroman/stylesheet.css new file mode 100644 index 0000000..2c745ae --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_bold_macroman/stylesheet.css @@ -0,0 +1,37 @@ +/* + * Web Fonts from fontspring.com + * + * All OpenType features and all extended glyphs have been removed. + * Fully installable fonts can be purchased at http://www.fontspring.com + * + * The fonts included in this stylesheet are subject to the End User License you purchased + * from Fontspring. The fonts are protected under domestic and international trademark and + * copyright law. You are prohibited from modifying, reverse engineering, duplicating, or + * distributing this font software. + * + * (c) 2010-2017 Fontspring + * + * + * + * + * The fonts included are copyrighted by the vendor listed below. + * + * Vendor: ingoFonts + * License URL: https://www.fontspring.com/licenses/ingofonts/webfont + * + * + */ + +@font-face { + font-family: 'depixelbold'; + src: url('depixelhalbfett-webfont.eot'); + src: url('depixelhalbfett-webfont.eot?#iefix') format('embedded-opentype'), + url('depixelhalbfett-webfont.woff2') format('woff2'), + url('depixelhalbfett-webfont.woff') format('woff'), + url('depixelhalbfett-webfont.ttf') format('truetype'), + url('depixelhalbfett-webfont.svg#depixelbold') format('svg'); + font-weight: normal; + font-style: normal; + +} + diff --git a/To Sort/depixel/Webfonts/depixel_breit_macroman/depixelbreit-demo.html b/To Sort/depixel/Webfonts/depixel_breit_macroman/depixelbreit-demo.html new file mode 100644 index 0000000..ec3ad39 --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_breit_macroman/depixelbreit-demo.html @@ -0,0 +1,382 @@ + + + + + + + + + + + + +DePixel Breit Specimen + + + + + + +
+ + + +
+ + +
+ +
+
+
AaBb
+
+
+ +
+
A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;
+
+
+
+ + + + + + + + + + + + + + + + +
10abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
11abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
12abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
13abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
14abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
16abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
18abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
20abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
24abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
30abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
36abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
48abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
60abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
72abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
90abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
+ +
+ +
+ + + +
+ + +
+
body
body
body
body
+
+ bodyDePixel Breit +
+
+ bodyArial +
+
+ bodyVerdana +
+
+ bodyGeorgia +
+ + + +
+ + +
+ +
+

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+
+
+

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+ +
+ +
+ +
+
+

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+ +
+ +
+ +
+
+

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+ +
+ + + +
+
+

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+ +
+
+

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+ +
+
+

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+ +
+ +
+ +
+
+

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+ +
+ + + + +
+ +
+ +
+ +
+

Lorem Ipsum Dolor

+

Etiam porta sem malesuada magna mollis euismod

+ + +
+
+
+
+

Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

+ + +

Pellentesque ornare sem

+ +

Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit.

+ +

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

+ +

Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur.

+ +

Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla.

+ +

Cras mattis consectetur

+ +

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum.

+ +

Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.

+
+ + +
+ +
+ + + + + + +
+
+
+ +

Language Support

+

The subset of DePixel Breit in this kit supports the following languages:
+ + Albanian, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Basque, Bislama, Breton, Cebuano, Chamorro, Corsican, Danish, Demo, English, Faroese, Fijian, Finnish, French Creole (Saint Lucia), Frisian, Galician, Genoese, German, Gilbertese (Kiribati), Greenlandic, Haitian Creole, Hiligaynon, Hmong, Hopi, Ibanag, Icelandic, Iloko (Ilokano), Indonesian, Interglossa (Glosa), Interlingua, Irish (Gaelic), Italian, Jèrriais, Latin Basic, Lojban, Lombard, Luxembourgian, Malagasy, Manx, Mohawk, Norfolk/Pitcairnese, Norwegian, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Portuguese, Potawatomi, Rhaeto-Romance, Romansh (Rumantsch), Rotokas, Sami (Lule), Sardinian (Sardu), Scots (Gaelic), Seychellois Creole (Seselwa), Shona, Sicilian, Somali, Southern Ndebele, Spanish, Swahili, Swati/Swazi, Swedish, Tagalog (Filipino/Pilipino), Tetum (Tetun), Tok Pisin, ubasic, Uyghur (Latinized), Volapük, Walloon, Warlpiri, Xhosa, Yapese, Zulu

+

Glyph Chart

+

The subset of DePixel Breit in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.

+
+ +
+
+ + +
+
+ + +
+ +
+ +
+
+
+

Installing Webfonts

+ +

Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.

+ +

1. Upload your webfonts

+

You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.

+ +

2. Include the webfont stylesheet

+

A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the Fontspring blog post about it. The code for it is as follows:

+ + + +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} + + +

We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:

+ <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + +

3. Modify your own stylesheet

+

To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:

+p { font-family: 'MyWebFont', Arial, sans-serif; } + +

4. Test

+

Getting webfonts to work cross-browser can be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.

+
+ + +
+ +
+ +
+ +
+ + diff --git a/To Sort/depixel/Webfonts/depixel_breit_macroman/depixelbreit-webfont.eot b/To Sort/depixel/Webfonts/depixel_breit_macroman/depixelbreit-webfont.eot new file mode 100644 index 0000000..e7d5760 Binary files /dev/null and b/To Sort/depixel/Webfonts/depixel_breit_macroman/depixelbreit-webfont.eot differ diff --git a/To Sort/depixel/Webfonts/depixel_breit_macroman/depixelbreit-webfont.svg b/To Sort/depixel/Webfonts/depixel_breit_macroman/depixelbreit-webfont.svg new file mode 100644 index 0000000..0c51d0b --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_breit_macroman/depixelbreit-webfont.svg @@ -0,0 +1,222 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/To Sort/depixel/Webfonts/depixel_breit_macroman/depixelbreit-webfont.ttf b/To Sort/depixel/Webfonts/depixel_breit_macroman/depixelbreit-webfont.ttf new file mode 100644 index 0000000..1a5f5f8 Binary files /dev/null and b/To Sort/depixel/Webfonts/depixel_breit_macroman/depixelbreit-webfont.ttf differ diff --git a/To Sort/depixel/Webfonts/depixel_breit_macroman/depixelbreit-webfont.woff b/To Sort/depixel/Webfonts/depixel_breit_macroman/depixelbreit-webfont.woff new file mode 100644 index 0000000..a214193 Binary files /dev/null and b/To Sort/depixel/Webfonts/depixel_breit_macroman/depixelbreit-webfont.woff differ diff --git a/To Sort/depixel/Webfonts/depixel_breit_macroman/depixelbreit-webfont.woff2 b/To Sort/depixel/Webfonts/depixel_breit_macroman/depixelbreit-webfont.woff2 new file mode 100644 index 0000000..fa4515f Binary files /dev/null and b/To Sort/depixel/Webfonts/depixel_breit_macroman/depixelbreit-webfont.woff2 differ diff --git a/To Sort/depixel/Webfonts/depixel_breit_macroman/specimen_files/easytabs.js b/To Sort/depixel/Webfonts/depixel_breit_macroman/specimen_files/easytabs.js new file mode 100644 index 0000000..167f53b --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_breit_macroman/specimen_files/easytabs.js @@ -0,0 +1,7 @@ +(function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} +if(typeof param.defaultContent=="number") +{var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} +$(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} +function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") +{$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} +$(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); \ No newline at end of file diff --git a/To Sort/depixel/Webfonts/depixel_breit_macroman/specimen_files/grid_12-825-55-15.css b/To Sort/depixel/Webfonts/depixel_breit_macroman/specimen_files/grid_12-825-55-15.css new file mode 100644 index 0000000..3d6aef7 --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_breit_macroman/specimen_files/grid_12-825-55-15.css @@ -0,0 +1,129 @@ +/*Notes about grid: +Columns: 12 +Grid Width: 825px +Column Width: 55px +Gutter Width: 15px +-------------------------------*/ + + + +.section {margin-bottom: 18px; +} +.section:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;} +.section {*zoom: 1;} + +.section .firstcolumn, +.section .firstcol {margin-left: 0;} + + +/* Border on left hand side of a column. */ +.border { + padding-left: 7px; + margin-left: 7px; + border-left: 1px solid #eee; +} + +/* Border with more whitespace, spans one column. */ +.colborder { + padding-left: 42px; + margin-left: 42px; + border-left: 1px solid #eee; +} + + + +/* The Grid Classes */ +.grid1, .grid1_2cols, .grid1_3cols, .grid1_4cols, .grid2, .grid2_3cols, .grid2_4cols, .grid3, .grid3_2cols, .grid3_4cols, .grid4, .grid4_3cols, .grid5, .grid5_2cols, .grid5_3cols, .grid5_4cols, .grid6, .grid6_4cols, .grid7, .grid7_2cols, .grid7_3cols, .grid7_4cols, .grid8, .grid8_3cols, .grid9, .grid9_2cols, .grid9_4cols, .grid10, .grid10_3cols, .grid10_4cols, .grid11, .grid11_2cols, .grid11_3cols, .grid11_4cols, .grid12 +{margin-left: 15px;float: left;display: inline; overflow: hidden;} + + +.width1, .grid1, .span-1 {width: 55px;} +.width1_2cols,.grid1_2cols {width: 20px;} +.width1_3cols,.grid1_3cols {width: 8px;} +.width1_4cols,.grid1_4cols {width: 2px;} +.input_width1 {width: 49px;} + +.width2, .grid2, .span-2 {width: 125px;} +.width2_3cols,.grid2_3cols {width: 31px;} +.width2_4cols,.grid2_4cols {width: 20px;} +.input_width2 {width: 119px;} + +.width3, .grid3, .span-3 {width: 195px;} +.width3_2cols,.grid3_2cols {width: 90px;} +.width3_4cols,.grid3_4cols {width: 37px;} +.input_width3 {width: 189px;} + +.width4, .grid4, .span-4 {width: 265px;} +.width4_3cols,.grid4_3cols {width: 78px;} +.input_width4 {width: 259px;} + +.width5, .grid5, .span-5 {width: 335px;} +.width5_2cols,.grid5_2cols {width: 160px;} +.width5_3cols,.grid5_3cols {width: 101px;} +.width5_4cols,.grid5_4cols {width: 72px;} +.input_width5 {width: 329px;} + +.width6, .grid6, .span-6 {width: 405px;} +.width6_4cols,.grid6_4cols {width: 90px;} +.input_width6 {width: 399px;} + +.width7, .grid7, .span-7 {width: 475px;} +.width7_2cols,.grid7_2cols {width: 230px;} +.width7_3cols,.grid7_3cols {width: 148px;} +.width7_4cols,.grid7_4cols {width: 107px;} +.input_width7 {width: 469px;} + +.width8, .grid8, .span-8 {width: 545px;} +.width8_3cols,.grid8_3cols {width: 171px;} +.input_width8 {width: 539px;} + +.width9, .grid9, .span-9 {width: 615px;} +.width9_2cols,.grid9_2cols {width: 300px;} +.width9_4cols,.grid9_4cols {width: 142px;} +.input_width9 {width: 609px;} + +.width10, .grid10, .span-10 {width: 685px;} +.width10_3cols,.grid10_3cols {width: 218px;} +.width10_4cols,.grid10_4cols {width: 160px;} +.input_width10 {width: 679px;} + +.width11, .grid11, .span-11 {width: 755px;} +.width11_2cols,.grid11_2cols {width: 370px;} +.width11_3cols,.grid11_3cols {width: 241px;} +.width11_4cols,.grid11_4cols {width: 177px;} +.input_width11 {width: 749px;} + +.width12, .grid12, .span-12 {width: 825px;} +.input_width12 {width: 819px;} + +/* Subdivided grid spaces */ +.emptycols_left1, .prepend-1 {padding-left: 70px;} +.emptycols_right1, .append-1 {padding-right: 70px;} +.emptycols_left2, .prepend-2 {padding-left: 140px;} +.emptycols_right2, .append-2 {padding-right: 140px;} +.emptycols_left3, .prepend-3 {padding-left: 210px;} +.emptycols_right3, .append-3 {padding-right: 210px;} +.emptycols_left4, .prepend-4 {padding-left: 280px;} +.emptycols_right4, .append-4 {padding-right: 280px;} +.emptycols_left5, .prepend-5 {padding-left: 350px;} +.emptycols_right5, .append-5 {padding-right: 350px;} +.emptycols_left6, .prepend-6 {padding-left: 420px;} +.emptycols_right6, .append-6 {padding-right: 420px;} +.emptycols_left7, .prepend-7 {padding-left: 490px;} +.emptycols_right7, .append-7 {padding-right: 490px;} +.emptycols_left8, .prepend-8 {padding-left: 560px;} +.emptycols_right8, .append-8 {padding-right: 560px;} +.emptycols_left9, .prepend-9 {padding-left: 630px;} +.emptycols_right9, .append-9 {padding-right: 630px;} +.emptycols_left10, .prepend-10 {padding-left: 700px;} +.emptycols_right10, .append-10 {padding-right: 700px;} +.emptycols_left11, .prepend-11 {padding-left: 770px;} +.emptycols_right11, .append-11 {padding-right: 770px;} +.pull-1 {margin-left: -70px;} +.push-1 {margin-right: -70px;margin-left: 18px;float: right;} +.pull-2 {margin-left: -140px;} +.push-2 {margin-right: -140px;margin-left: 18px;float: right;} +.pull-3 {margin-left: -210px;} +.push-3 {margin-right: -210px;margin-left: 18px;float: right;} +.pull-4 {margin-left: -280px;} +.push-4 {margin-right: -280px;margin-left: 18px;float: right;} \ No newline at end of file diff --git a/To Sort/depixel/Webfonts/depixel_breit_macroman/specimen_files/specimen_stylesheet.css b/To Sort/depixel/Webfonts/depixel_breit_macroman/specimen_files/specimen_stylesheet.css new file mode 100644 index 0000000..aecc43c --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_breit_macroman/specimen_files/specimen_stylesheet.css @@ -0,0 +1,396 @@ +@import url('grid_12-825-55-15.css'); + +/* + CSS Reset by Eric Meyer - Released under Public Domain + http://meyerweb.com/eric/tools/css/reset/ +*/ +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, font, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, center, dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, table, +caption, tbody, tfoot, thead, tr, th, td + {margin: 0;padding: 0;border: 0;outline: 0; + font-size: 100%;vertical-align: baseline; + background: transparent;} +body {line-height: 1;} +ol, ul {list-style: none;} +blockquote, q {quotes: none;} +blockquote:before, blockquote:after, +q:before, q:after {content: ''; content: none;} +:focus {outline: 0;} +ins {text-decoration: none;} +del {text-decoration: line-through;} +table {border-collapse: collapse;border-spacing: 0;} + + + + +body { + color: #000; + background-color: #dcdcdc; +} + +a { + text-decoration: none; + color: #1883ba; +} + +h1{ + font-size: 32px; + font-weight: normal; + font-style: normal; + margin-bottom: 18px; +} + +h2{ + font-size: 18px; +} + +#container { + width: 865px; + margin: 0px auto; +} + + +#header { + padding: 20px; + font-size: 36px; + background-color: #000; + color: #fff; +} + +#header span { + color: #666; +} +#main_content { + background-color: #fff; + padding: 60px 20px 20px; +} + + +#footer p { + margin: 0; + padding-top: 10px; + padding-bottom: 50px; + color: #333; + font: 10px Arial, sans-serif; +} + +.tabs { + width: 100%; + height: 31px; + background-color: #444; +} +.tabs li { + float: left; + margin: 0; + overflow: hidden; + background-color: #444; +} +.tabs li a { + display: block; + color: #fff; + text-decoration: none; + font: bold 11px/11px 'Arial'; + text-transform: uppercase; + padding: 10px 15px; + border-right: 1px solid #fff; +} + +.tabs li a:hover { + background-color: #00b3ff; + +} + +.tabs li.active a { + color: #000; + background-color: #fff; +} + + + +div.huge { + + font-size: 300px; + line-height: 1em; + padding: 0; + letter-spacing: -.02em; + overflow: hidden; +} +div.glyph_range { + font-size: 72px; + line-height: 1.1em; +} + +.size10{ font-size: 10px; } +.size11{ font-size: 11px; } +.size12{ font-size: 12px; } +.size13{ font-size: 13px; } +.size14{ font-size: 14px; } +.size16{ font-size: 16px; } +.size18{ font-size: 18px; } +.size20{ font-size: 20px; } +.size24{ font-size: 24px; } +.size30{ font-size: 30px; } +.size36{ font-size: 36px; } +.size48{ font-size: 48px; } +.size60{ font-size: 60px; } +.size72{ font-size: 72px; } +.size90{ font-size: 90px; } + + +.psample_row1 { height: 120px;} +.psample_row1 { height: 120px;} +.psample_row2 { height: 160px;} +.psample_row3 { height: 160px;} +.psample_row4 { height: 160px;} + +.psample { + overflow: hidden; + position: relative; +} +.psample p { + line-height: 1.3em; + display: block; + overflow: hidden; + margin: 0; +} + +.psample span { + margin-right: .5em; +} + +.white_blend { + width: 100%; + height: 61px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNrs3TsKgFAMRUE/eer+NxztxMYuEWQG3ECKwwUF58ycAKixOAGAyAKILAAiCyCyACILgMgCiCyAyAIgsgAiCyCyAIgsgMgCiCwAIgsgsgAiC4DIAogsACIL0CWuZ3UGgLrIhjMA1EV2OAOAJQtgyQLwjOzmDAAiCyCyAIgsQFtkd2cAEFkAkQVAZAHaIns4A4AlC2DJAiCyACILILIAiCzAV5H1dQGAJQsgsgCILIDIAvwisl58AViyAJYsACILILIAIgvAe2T9EhxAZAFEFgCRBeiL7HAGgLrIhjMAWLIAliwAt1OAAQDwygTBulLIlQAAAABJRU5ErkJggg==); + position: absolute; + bottom: 0; +} +.black_blend { + width: 100%; + height: 61px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNrs3TEKhTAQRVGjibr/9QoxhY2N3Ywo50A28IrLwP9g6b1PAMSYTQAgsgAiC4DIAogsgMgCILIAIgsgsgCILIDIAogsACILILIAIguAyAKILIDIAiCyACILgMgCZCnjLWYAiFGvB0BQZJsZAFyyAC5ZAO6RXc0AILIAIguAyAKkRXYzA4DIAogsACILkBbZ3QwALlkAlywAIgsgsgAiC4DIArwVWf8uAHDJAogsACILILIAv4isH74AXLIALlkARBZAZAFEFoDnyPokOIDIAogsACILkBfZZgaAuMhWMwC4ZAE+p4x3mAEgxinAAJ+XBbPWGkwAAAAAAElFTkSuQmCC); + position: absolute; + bottom: 0; +} +.fullreverse { + background: #000 !important; + color: #fff !important; + margin-left: -20px; + padding-left: 20px; + margin-right: -20px; + padding-right: 20px; + padding: 20px; + margin-bottom:0; +} + + +.sample_table td { + padding-top: 3px; + padding-bottom:5px; + padding-left: 5px; + vertical-align: middle; + line-height: 1.2em; +} + +.sample_table td:first-child { + background-color: #eee; + text-align: right; + padding-right: 5px; + padding-left: 0; + padding: 5px; + font: 11px/12px "Courier New", Courier, mono; +} + +code { + white-space: pre; + background-color: #eee; + display: block; + padding: 10px; + margin-bottom: 18px; + overflow: auto; +} + + +.bottom,.last {margin-bottom:0 !important; padding-bottom:0 !important;} + +.box { + padding: 18px; + margin-bottom: 18px; + background: #eee; +} + +.reverse,.reversed { background: #000 !important;color: #fff !important; border: none !important;} + +#bodycomparison { + position: relative; + overflow: hidden; + font-size: 72px; + height: 90px; + white-space: nowrap; +} + +#bodycomparison div{ + font-size: 72px; + line-height: 90px; + display: inline; + margin: 0 15px 0 0; + padding: 0; +} + +#bodycomparison div span{ + font: 10px Arial; + position: absolute; + left: 0; +} +#xheight { + float: none; + position: absolute; + color: #d9f3ff; + font-size: 72px; + line-height: 90px; +} + +.fontbody { + position: relative; +} +.arialbody{ + font-family: Arial; + position: relative; +} +.verdanabody{ + font-family: Verdana; + position: relative; +} +.georgiabody{ + font-family: Georgia; + position: relative; +} + +/* @group Layout page + */ + +#layout h1 { + font-size: 36px; + line-height: 42px; + font-weight: normal; + font-style: normal; +} + +#layout h2 { + font-size: 24px; + line-height: 23px; + font-weight: normal; + font-style: normal; +} + +#layout h3 { + font-size: 22px; + line-height: 1.4em; + margin-top: 1em; + font-weight: normal; + font-style: normal; +} + + +#layout p.byline { + font-size: 12px; + margin-top: 18px; + line-height: 12px; + margin-bottom: 0; +} +#layout p { + font-size: 14px; + line-height: 21px; + margin-bottom: .5em; +} + +#layout p.large{ + font-size: 18px; + line-height: 26px; +} + +#layout .sidebar p{ + font-size: 12px; + line-height: 1.4em; +} + +#layout p.caption { + font-size: 10px; + margin-top: -16px; + margin-bottom: 18px; +} + +/* @end */ + +/* @group Glyphs */ + +#glyph_chart div{ + background-color: #d9f3ff; + color: black; + float: left; + font-size: 36px; + height: 1.2em; + line-height: 1.2em; + margin-bottom: 1px; + margin-right: 1px; + text-align: center; + width: 1.2em; + position: relative; + padding: .6em .2em .2em; +} + +#glyph_chart div p { + position: absolute; + left: 0; + top: 0; + display: block; + text-align: center; + font: bold 9px Arial, sans-serif; + background-color: #3a768f; + width: 100%; + color: #fff; + padding: 2px 0; +} + + +#glyphs h1 { + font-family: Arial, sans-serif; +} +/* @end */ + +/* @group Installing */ + +#installing { + font: 13px Arial, sans-serif; +} + +#installing p, +#glyphs p{ + line-height: 1.2em; + margin-bottom: 18px; + font: 13px Arial, sans-serif; +} + + + +#installing h3{ + font-size: 15px; + margin-top: 18px; +} + +/* @end */ + +#rendering h1 { + font-family: Arial, sans-serif; +} +.render_table td { + font: 11px "Courier New", Courier, mono; + vertical-align: middle; +} + + diff --git a/To Sort/depixel/Webfonts/depixel_breit_macroman/stylesheet.css b/To Sort/depixel/Webfonts/depixel_breit_macroman/stylesheet.css new file mode 100644 index 0000000..5be673d --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_breit_macroman/stylesheet.css @@ -0,0 +1,37 @@ +/* + * Web Fonts from fontspring.com + * + * All OpenType features and all extended glyphs have been removed. + * Fully installable fonts can be purchased at http://www.fontspring.com + * + * The fonts included in this stylesheet are subject to the End User License you purchased + * from Fontspring. The fonts are protected under domestic and international trademark and + * copyright law. You are prohibited from modifying, reverse engineering, duplicating, or + * distributing this font software. + * + * (c) 2010-2017 Fontspring + * + * + * + * + * The fonts included are copyrighted by the vendor listed below. + * + * Vendor: ingoFonts + * License URL: https://www.fontspring.com/licenses/ingofonts/webfont + * + * + */ + +@font-face { + font-family: 'depixelbreit'; + src: url('depixelbreit-webfont.eot'); + src: url('depixelbreit-webfont.eot?#iefix') format('embedded-opentype'), + url('depixelbreit-webfont.woff2') format('woff2'), + url('depixelbreit-webfont.woff') format('woff'), + url('depixelbreit-webfont.ttf') format('truetype'), + url('depixelbreit-webfont.svg#depixelbreit') format('svg'); + font-weight: normal; + font-style: normal; + +} + diff --git a/To Sort/depixel/Webfonts/depixel_breitfett_macroman/depixelbreitfett-demo.html b/To Sort/depixel/Webfonts/depixel_breitfett_macroman/depixelbreitfett-demo.html new file mode 100644 index 0000000..3e97950 --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_breitfett_macroman/depixelbreitfett-demo.html @@ -0,0 +1,382 @@ + + + + + + + + + + + + +DePixel Breit Fett Specimen + + + + + + +
+ + + +
+ + +
+ +
+
+
AaBb
+
+
+ +
+
A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;
+
+
+
+ + + + + + + + + + + + + + + + +
10abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
11abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
12abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
13abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
14abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
16abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
18abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
20abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
24abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
30abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
36abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
48abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
60abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
72abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
90abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
+ +
+ +
+ + + +
+ + +
+
body
body
body
body
+
+ bodyDePixel Breit Fett +
+
+ bodyArial +
+
+ bodyVerdana +
+
+ bodyGeorgia +
+ + + +
+ + +
+ +
+

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+
+
+

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+ +
+ +
+ +
+
+

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+ +
+ +
+ +
+
+

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+ +
+ + + +
+
+

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+ +
+
+

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+ +
+
+

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+ +
+ +
+ +
+
+

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+ +
+ + + + +
+ +
+ +
+ +
+

Lorem Ipsum Dolor

+

Etiam porta sem malesuada magna mollis euismod

+ + +
+
+
+
+

Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

+ + +

Pellentesque ornare sem

+ +

Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit.

+ +

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

+ +

Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur.

+ +

Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla.

+ +

Cras mattis consectetur

+ +

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum.

+ +

Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.

+
+ + +
+ +
+ + + + + + +
+
+
+ +

Language Support

+

The subset of DePixel Breit Fett in this kit supports the following languages:
+ + Albanian, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Basque, Bislama, Breton, Cebuano, Chamorro, Corsican, Danish, Demo, Dutch, English, Faroese, Fijian, Finnish, French Creole (Saint Lucia), Frisian, Galician, Genoese, German, Gilbertese (Kiribati), Greenlandic, Haitian Creole, Hiligaynon, Hmong, Hopi, Ibanag, Icelandic, Iloko (Ilokano), Indonesian, Interglossa (Glosa), Interlingua, Irish (Gaelic), Italian, Jèrriais, Latin Basic, Lojban, Lombard, Luxembourgian, Malagasy, Manx, Mohawk, Norfolk/Pitcairnese, Norwegian, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Portuguese, Potawatomi, Rhaeto-Romance, Romansh (Rumantsch), Rotokas, Sami (Lule), Sardinian (Sardu), Scots (Gaelic), Seychellois Creole (Seselwa), Shona, Sicilian, Somali, Southern Ndebele, Spanish, Swahili, Swati/Swazi, Swedish, Tagalog (Filipino/Pilipino), Tetum (Tetun), Tok Pisin, ubasic, Uyghur (Latinized), Volapük, Walloon, Warlpiri, Xhosa, Yapese, Zulu

+

Glyph Chart

+

The subset of DePixel Breit Fett in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.

+
+ +
+
+ + +
+
+ + +
+ +
+ +
+
+
+

Installing Webfonts

+ +

Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.

+ +

1. Upload your webfonts

+

You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.

+ +

2. Include the webfont stylesheet

+

A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the Fontspring blog post about it. The code for it is as follows:

+ + + +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} + + +

We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:

+ <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + +

3. Modify your own stylesheet

+

To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:

+p { font-family: 'MyWebFont', Arial, sans-serif; } + +

4. Test

+

Getting webfonts to work cross-browser can be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.

+
+ + +
+ +
+ +
+ +
+ + diff --git a/To Sort/depixel/Webfonts/depixel_breitfett_macroman/depixelbreitfett-webfont.eot b/To Sort/depixel/Webfonts/depixel_breitfett_macroman/depixelbreitfett-webfont.eot new file mode 100644 index 0000000..230a890 Binary files /dev/null and b/To Sort/depixel/Webfonts/depixel_breitfett_macroman/depixelbreitfett-webfont.eot differ diff --git a/To Sort/depixel/Webfonts/depixel_breitfett_macroman/depixelbreitfett-webfont.svg b/To Sort/depixel/Webfonts/depixel_breitfett_macroman/depixelbreitfett-webfont.svg new file mode 100644 index 0000000..640ed61 --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_breitfett_macroman/depixelbreitfett-webfont.svg @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/To Sort/depixel/Webfonts/depixel_breitfett_macroman/depixelbreitfett-webfont.ttf b/To Sort/depixel/Webfonts/depixel_breitfett_macroman/depixelbreitfett-webfont.ttf new file mode 100644 index 0000000..a1d74c5 Binary files /dev/null and b/To Sort/depixel/Webfonts/depixel_breitfett_macroman/depixelbreitfett-webfont.ttf differ diff --git a/To Sort/depixel/Webfonts/depixel_breitfett_macroman/depixelbreitfett-webfont.woff b/To Sort/depixel/Webfonts/depixel_breitfett_macroman/depixelbreitfett-webfont.woff new file mode 100644 index 0000000..02f0df7 Binary files /dev/null and b/To Sort/depixel/Webfonts/depixel_breitfett_macroman/depixelbreitfett-webfont.woff differ diff --git a/To Sort/depixel/Webfonts/depixel_breitfett_macroman/depixelbreitfett-webfont.woff2 b/To Sort/depixel/Webfonts/depixel_breitfett_macroman/depixelbreitfett-webfont.woff2 new file mode 100644 index 0000000..5cf1227 Binary files /dev/null and b/To Sort/depixel/Webfonts/depixel_breitfett_macroman/depixelbreitfett-webfont.woff2 differ diff --git a/To Sort/depixel/Webfonts/depixel_breitfett_macroman/specimen_files/easytabs.js b/To Sort/depixel/Webfonts/depixel_breitfett_macroman/specimen_files/easytabs.js new file mode 100644 index 0000000..167f53b --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_breitfett_macroman/specimen_files/easytabs.js @@ -0,0 +1,7 @@ +(function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} +if(typeof param.defaultContent=="number") +{var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} +$(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} +function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") +{$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} +$(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); \ No newline at end of file diff --git a/To Sort/depixel/Webfonts/depixel_breitfett_macroman/specimen_files/grid_12-825-55-15.css b/To Sort/depixel/Webfonts/depixel_breitfett_macroman/specimen_files/grid_12-825-55-15.css new file mode 100644 index 0000000..3d6aef7 --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_breitfett_macroman/specimen_files/grid_12-825-55-15.css @@ -0,0 +1,129 @@ +/*Notes about grid: +Columns: 12 +Grid Width: 825px +Column Width: 55px +Gutter Width: 15px +-------------------------------*/ + + + +.section {margin-bottom: 18px; +} +.section:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;} +.section {*zoom: 1;} + +.section .firstcolumn, +.section .firstcol {margin-left: 0;} + + +/* Border on left hand side of a column. */ +.border { + padding-left: 7px; + margin-left: 7px; + border-left: 1px solid #eee; +} + +/* Border with more whitespace, spans one column. */ +.colborder { + padding-left: 42px; + margin-left: 42px; + border-left: 1px solid #eee; +} + + + +/* The Grid Classes */ +.grid1, .grid1_2cols, .grid1_3cols, .grid1_4cols, .grid2, .grid2_3cols, .grid2_4cols, .grid3, .grid3_2cols, .grid3_4cols, .grid4, .grid4_3cols, .grid5, .grid5_2cols, .grid5_3cols, .grid5_4cols, .grid6, .grid6_4cols, .grid7, .grid7_2cols, .grid7_3cols, .grid7_4cols, .grid8, .grid8_3cols, .grid9, .grid9_2cols, .grid9_4cols, .grid10, .grid10_3cols, .grid10_4cols, .grid11, .grid11_2cols, .grid11_3cols, .grid11_4cols, .grid12 +{margin-left: 15px;float: left;display: inline; overflow: hidden;} + + +.width1, .grid1, .span-1 {width: 55px;} +.width1_2cols,.grid1_2cols {width: 20px;} +.width1_3cols,.grid1_3cols {width: 8px;} +.width1_4cols,.grid1_4cols {width: 2px;} +.input_width1 {width: 49px;} + +.width2, .grid2, .span-2 {width: 125px;} +.width2_3cols,.grid2_3cols {width: 31px;} +.width2_4cols,.grid2_4cols {width: 20px;} +.input_width2 {width: 119px;} + +.width3, .grid3, .span-3 {width: 195px;} +.width3_2cols,.grid3_2cols {width: 90px;} +.width3_4cols,.grid3_4cols {width: 37px;} +.input_width3 {width: 189px;} + +.width4, .grid4, .span-4 {width: 265px;} +.width4_3cols,.grid4_3cols {width: 78px;} +.input_width4 {width: 259px;} + +.width5, .grid5, .span-5 {width: 335px;} +.width5_2cols,.grid5_2cols {width: 160px;} +.width5_3cols,.grid5_3cols {width: 101px;} +.width5_4cols,.grid5_4cols {width: 72px;} +.input_width5 {width: 329px;} + +.width6, .grid6, .span-6 {width: 405px;} +.width6_4cols,.grid6_4cols {width: 90px;} +.input_width6 {width: 399px;} + +.width7, .grid7, .span-7 {width: 475px;} +.width7_2cols,.grid7_2cols {width: 230px;} +.width7_3cols,.grid7_3cols {width: 148px;} +.width7_4cols,.grid7_4cols {width: 107px;} +.input_width7 {width: 469px;} + +.width8, .grid8, .span-8 {width: 545px;} +.width8_3cols,.grid8_3cols {width: 171px;} +.input_width8 {width: 539px;} + +.width9, .grid9, .span-9 {width: 615px;} +.width9_2cols,.grid9_2cols {width: 300px;} +.width9_4cols,.grid9_4cols {width: 142px;} +.input_width9 {width: 609px;} + +.width10, .grid10, .span-10 {width: 685px;} +.width10_3cols,.grid10_3cols {width: 218px;} +.width10_4cols,.grid10_4cols {width: 160px;} +.input_width10 {width: 679px;} + +.width11, .grid11, .span-11 {width: 755px;} +.width11_2cols,.grid11_2cols {width: 370px;} +.width11_3cols,.grid11_3cols {width: 241px;} +.width11_4cols,.grid11_4cols {width: 177px;} +.input_width11 {width: 749px;} + +.width12, .grid12, .span-12 {width: 825px;} +.input_width12 {width: 819px;} + +/* Subdivided grid spaces */ +.emptycols_left1, .prepend-1 {padding-left: 70px;} +.emptycols_right1, .append-1 {padding-right: 70px;} +.emptycols_left2, .prepend-2 {padding-left: 140px;} +.emptycols_right2, .append-2 {padding-right: 140px;} +.emptycols_left3, .prepend-3 {padding-left: 210px;} +.emptycols_right3, .append-3 {padding-right: 210px;} +.emptycols_left4, .prepend-4 {padding-left: 280px;} +.emptycols_right4, .append-4 {padding-right: 280px;} +.emptycols_left5, .prepend-5 {padding-left: 350px;} +.emptycols_right5, .append-5 {padding-right: 350px;} +.emptycols_left6, .prepend-6 {padding-left: 420px;} +.emptycols_right6, .append-6 {padding-right: 420px;} +.emptycols_left7, .prepend-7 {padding-left: 490px;} +.emptycols_right7, .append-7 {padding-right: 490px;} +.emptycols_left8, .prepend-8 {padding-left: 560px;} +.emptycols_right8, .append-8 {padding-right: 560px;} +.emptycols_left9, .prepend-9 {padding-left: 630px;} +.emptycols_right9, .append-9 {padding-right: 630px;} +.emptycols_left10, .prepend-10 {padding-left: 700px;} +.emptycols_right10, .append-10 {padding-right: 700px;} +.emptycols_left11, .prepend-11 {padding-left: 770px;} +.emptycols_right11, .append-11 {padding-right: 770px;} +.pull-1 {margin-left: -70px;} +.push-1 {margin-right: -70px;margin-left: 18px;float: right;} +.pull-2 {margin-left: -140px;} +.push-2 {margin-right: -140px;margin-left: 18px;float: right;} +.pull-3 {margin-left: -210px;} +.push-3 {margin-right: -210px;margin-left: 18px;float: right;} +.pull-4 {margin-left: -280px;} +.push-4 {margin-right: -280px;margin-left: 18px;float: right;} \ No newline at end of file diff --git a/To Sort/depixel/Webfonts/depixel_breitfett_macroman/specimen_files/specimen_stylesheet.css b/To Sort/depixel/Webfonts/depixel_breitfett_macroman/specimen_files/specimen_stylesheet.css new file mode 100644 index 0000000..aecc43c --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_breitfett_macroman/specimen_files/specimen_stylesheet.css @@ -0,0 +1,396 @@ +@import url('grid_12-825-55-15.css'); + +/* + CSS Reset by Eric Meyer - Released under Public Domain + http://meyerweb.com/eric/tools/css/reset/ +*/ +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, font, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, center, dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, table, +caption, tbody, tfoot, thead, tr, th, td + {margin: 0;padding: 0;border: 0;outline: 0; + font-size: 100%;vertical-align: baseline; + background: transparent;} +body {line-height: 1;} +ol, ul {list-style: none;} +blockquote, q {quotes: none;} +blockquote:before, blockquote:after, +q:before, q:after {content: ''; content: none;} +:focus {outline: 0;} +ins {text-decoration: none;} +del {text-decoration: line-through;} +table {border-collapse: collapse;border-spacing: 0;} + + + + +body { + color: #000; + background-color: #dcdcdc; +} + +a { + text-decoration: none; + color: #1883ba; +} + +h1{ + font-size: 32px; + font-weight: normal; + font-style: normal; + margin-bottom: 18px; +} + +h2{ + font-size: 18px; +} + +#container { + width: 865px; + margin: 0px auto; +} + + +#header { + padding: 20px; + font-size: 36px; + background-color: #000; + color: #fff; +} + +#header span { + color: #666; +} +#main_content { + background-color: #fff; + padding: 60px 20px 20px; +} + + +#footer p { + margin: 0; + padding-top: 10px; + padding-bottom: 50px; + color: #333; + font: 10px Arial, sans-serif; +} + +.tabs { + width: 100%; + height: 31px; + background-color: #444; +} +.tabs li { + float: left; + margin: 0; + overflow: hidden; + background-color: #444; +} +.tabs li a { + display: block; + color: #fff; + text-decoration: none; + font: bold 11px/11px 'Arial'; + text-transform: uppercase; + padding: 10px 15px; + border-right: 1px solid #fff; +} + +.tabs li a:hover { + background-color: #00b3ff; + +} + +.tabs li.active a { + color: #000; + background-color: #fff; +} + + + +div.huge { + + font-size: 300px; + line-height: 1em; + padding: 0; + letter-spacing: -.02em; + overflow: hidden; +} +div.glyph_range { + font-size: 72px; + line-height: 1.1em; +} + +.size10{ font-size: 10px; } +.size11{ font-size: 11px; } +.size12{ font-size: 12px; } +.size13{ font-size: 13px; } +.size14{ font-size: 14px; } +.size16{ font-size: 16px; } +.size18{ font-size: 18px; } +.size20{ font-size: 20px; } +.size24{ font-size: 24px; } +.size30{ font-size: 30px; } +.size36{ font-size: 36px; } +.size48{ font-size: 48px; } +.size60{ font-size: 60px; } +.size72{ font-size: 72px; } +.size90{ font-size: 90px; } + + +.psample_row1 { height: 120px;} +.psample_row1 { height: 120px;} +.psample_row2 { height: 160px;} +.psample_row3 { height: 160px;} +.psample_row4 { height: 160px;} + +.psample { + overflow: hidden; + position: relative; +} +.psample p { + line-height: 1.3em; + display: block; + overflow: hidden; + margin: 0; +} + +.psample span { + margin-right: .5em; +} + +.white_blend { + width: 100%; + height: 61px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNrs3TsKgFAMRUE/eer+NxztxMYuEWQG3ECKwwUF58ycAKixOAGAyAKILAAiCyCyACILgMgCiCyAyAIgsgAiCyCyAIgsgMgCiCwAIgsgsgAiC4DIAogsACIL0CWuZ3UGgLrIhjMA1EV2OAOAJQtgyQLwjOzmDAAiCyCyAIgsQFtkd2cAEFkAkQVAZAHaIns4A4AlC2DJAiCyACILILIAiCzAV5H1dQGAJQsgsgCILIDIAvwisl58AViyAJYsACILILIAIgvAe2T9EhxAZAFEFgCRBeiL7HAGgLrIhjMAWLIAliwAt1OAAQDwygTBulLIlQAAAABJRU5ErkJggg==); + position: absolute; + bottom: 0; +} +.black_blend { + width: 100%; + height: 61px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNrs3TEKhTAQRVGjibr/9QoxhY2N3Ywo50A28IrLwP9g6b1PAMSYTQAgsgAiC4DIAogsgMgCILIAIgsgsgCILIDIAogsACILILIAIguAyAKILIDIAiCyACILgMgCZCnjLWYAiFGvB0BQZJsZAFyyAC5ZAO6RXc0AILIAIguAyAKkRXYzA4DIAogsACILkBbZ3QwALlkAlywAIgsgsgAiC4DIArwVWf8uAHDJAogsACILILIAv4isH74AXLIALlkARBZAZAFEFoDnyPokOIDIAogsACILkBfZZgaAuMhWMwC4ZAE+p4x3mAEgxinAAJ+XBbPWGkwAAAAAAElFTkSuQmCC); + position: absolute; + bottom: 0; +} +.fullreverse { + background: #000 !important; + color: #fff !important; + margin-left: -20px; + padding-left: 20px; + margin-right: -20px; + padding-right: 20px; + padding: 20px; + margin-bottom:0; +} + + +.sample_table td { + padding-top: 3px; + padding-bottom:5px; + padding-left: 5px; + vertical-align: middle; + line-height: 1.2em; +} + +.sample_table td:first-child { + background-color: #eee; + text-align: right; + padding-right: 5px; + padding-left: 0; + padding: 5px; + font: 11px/12px "Courier New", Courier, mono; +} + +code { + white-space: pre; + background-color: #eee; + display: block; + padding: 10px; + margin-bottom: 18px; + overflow: auto; +} + + +.bottom,.last {margin-bottom:0 !important; padding-bottom:0 !important;} + +.box { + padding: 18px; + margin-bottom: 18px; + background: #eee; +} + +.reverse,.reversed { background: #000 !important;color: #fff !important; border: none !important;} + +#bodycomparison { + position: relative; + overflow: hidden; + font-size: 72px; + height: 90px; + white-space: nowrap; +} + +#bodycomparison div{ + font-size: 72px; + line-height: 90px; + display: inline; + margin: 0 15px 0 0; + padding: 0; +} + +#bodycomparison div span{ + font: 10px Arial; + position: absolute; + left: 0; +} +#xheight { + float: none; + position: absolute; + color: #d9f3ff; + font-size: 72px; + line-height: 90px; +} + +.fontbody { + position: relative; +} +.arialbody{ + font-family: Arial; + position: relative; +} +.verdanabody{ + font-family: Verdana; + position: relative; +} +.georgiabody{ + font-family: Georgia; + position: relative; +} + +/* @group Layout page + */ + +#layout h1 { + font-size: 36px; + line-height: 42px; + font-weight: normal; + font-style: normal; +} + +#layout h2 { + font-size: 24px; + line-height: 23px; + font-weight: normal; + font-style: normal; +} + +#layout h3 { + font-size: 22px; + line-height: 1.4em; + margin-top: 1em; + font-weight: normal; + font-style: normal; +} + + +#layout p.byline { + font-size: 12px; + margin-top: 18px; + line-height: 12px; + margin-bottom: 0; +} +#layout p { + font-size: 14px; + line-height: 21px; + margin-bottom: .5em; +} + +#layout p.large{ + font-size: 18px; + line-height: 26px; +} + +#layout .sidebar p{ + font-size: 12px; + line-height: 1.4em; +} + +#layout p.caption { + font-size: 10px; + margin-top: -16px; + margin-bottom: 18px; +} + +/* @end */ + +/* @group Glyphs */ + +#glyph_chart div{ + background-color: #d9f3ff; + color: black; + float: left; + font-size: 36px; + height: 1.2em; + line-height: 1.2em; + margin-bottom: 1px; + margin-right: 1px; + text-align: center; + width: 1.2em; + position: relative; + padding: .6em .2em .2em; +} + +#glyph_chart div p { + position: absolute; + left: 0; + top: 0; + display: block; + text-align: center; + font: bold 9px Arial, sans-serif; + background-color: #3a768f; + width: 100%; + color: #fff; + padding: 2px 0; +} + + +#glyphs h1 { + font-family: Arial, sans-serif; +} +/* @end */ + +/* @group Installing */ + +#installing { + font: 13px Arial, sans-serif; +} + +#installing p, +#glyphs p{ + line-height: 1.2em; + margin-bottom: 18px; + font: 13px Arial, sans-serif; +} + + + +#installing h3{ + font-size: 15px; + margin-top: 18px; +} + +/* @end */ + +#rendering h1 { + font-family: Arial, sans-serif; +} +.render_table td { + font: 11px "Courier New", Courier, mono; + vertical-align: middle; +} + + diff --git a/To Sort/depixel/Webfonts/depixel_breitfett_macroman/stylesheet.css b/To Sort/depixel/Webfonts/depixel_breitfett_macroman/stylesheet.css new file mode 100644 index 0000000..227de74 --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_breitfett_macroman/stylesheet.css @@ -0,0 +1,37 @@ +/* + * Web Fonts from fontspring.com + * + * All OpenType features and all extended glyphs have been removed. + * Fully installable fonts can be purchased at http://www.fontspring.com + * + * The fonts included in this stylesheet are subject to the End User License you purchased + * from Fontspring. The fonts are protected under domestic and international trademark and + * copyright law. You are prohibited from modifying, reverse engineering, duplicating, or + * distributing this font software. + * + * (c) 2010-2017 Fontspring + * + * + * + * + * The fonts included are copyrighted by the vendor listed below. + * + * Vendor: ingoFonts + * License URL: https://www.fontspring.com/licenses/ingofonts/webfont + * + * + */ + +@font-face { + font-family: 'depixelbreitfett'; + src: url('depixelbreitfett-webfont.eot'); + src: url('depixelbreitfett-webfont.eot?#iefix') format('embedded-opentype'), + url('depixelbreitfett-webfont.woff2') format('woff2'), + url('depixelbreitfett-webfont.woff') format('woff'), + url('depixelbreitfett-webfont.ttf') format('truetype'), + url('depixelbreitfett-webfont.svg#depixelbreitfett') format('svg'); + font-weight: normal; + font-style: normal; + +} + diff --git a/To Sort/depixel/Webfonts/depixel_illegible_macroman/depixelillegible-demo.html b/To Sort/depixel/Webfonts/depixel_illegible_macroman/depixelillegible-demo.html new file mode 100644 index 0000000..ee448f3 --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_illegible_macroman/depixelillegible-demo.html @@ -0,0 +1,382 @@ + + + + + + + + + + + + +DePixel Illegible Specimen + + + + + + +
+ + + +
+ + +
+ +
+
+
AaBb
+
+
+ +
+
A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;
+
+
+
+ + + + + + + + + + + + + + + + +
10abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
11abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
12abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
13abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
14abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
16abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
18abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
20abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
24abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
30abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
36abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
48abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
60abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
72abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
90abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
+ +
+ +
+ + + +
+ + +
+
body
body
body
body
+
+ bodyDePixel Illegible +
+
+ bodyArial +
+
+ bodyVerdana +
+
+ bodyGeorgia +
+ + + +
+ + +
+ +
+

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+
+
+

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+ +
+ +
+ +
+
+

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+ +
+ +
+ +
+
+

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+ +
+ + + +
+
+

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+ +
+
+

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+ +
+
+

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+ +
+ +
+ +
+
+

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+ +
+ + + + +
+ +
+ +
+ +
+

Lorem Ipsum Dolor

+

Etiam porta sem malesuada magna mollis euismod

+ + +
+
+
+
+

Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

+ + +

Pellentesque ornare sem

+ +

Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit.

+ +

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

+ +

Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur.

+ +

Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla.

+ +

Cras mattis consectetur

+ +

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum.

+ +

Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.

+
+ + +
+ +
+ + + + + + +
+
+
+ +

Language Support

+

The subset of DePixel Illegible in this kit supports the following languages:
+ + Albanian, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Basque, Bislama, Breton, Cebuano, Chamorro, Corsican, Danish, Demo, English, Faroese, Fijian, Finnish, French Creole (Saint Lucia), Frisian, Galician, Genoese, German, Gilbertese (Kiribati), Greenlandic, Haitian Creole, Hiligaynon, Hmong, Hopi, Ibanag, Icelandic, Iloko (Ilokano), Indonesian, Interglossa (Glosa), Interlingua, Irish (Gaelic), Italian, Jèrriais, Latin Basic, Lojban, Lombard, Luxembourgian, Malagasy, Manx, Mohawk, Norfolk/Pitcairnese, Norwegian, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Portuguese, Potawatomi, Rhaeto-Romance, Romansh (Rumantsch), Rotokas, Sami (Lule), Sardinian (Sardu), Scots (Gaelic), Seychellois Creole (Seselwa), Shona, Sicilian, Somali, Southern Ndebele, Spanish, Swahili, Swati/Swazi, Swedish, Tagalog (Filipino/Pilipino), Tetum (Tetun), Tok Pisin, ubasic, Uyghur (Latinized), Volapük, Walloon, Warlpiri, Xhosa, Yapese, Zulu

+

Glyph Chart

+

The subset of DePixel Illegible in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.

+
+ +
+
+ + +
+
+ + +
+ +
+ +
+
+
+

Installing Webfonts

+ +

Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.

+ +

1. Upload your webfonts

+

You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.

+ +

2. Include the webfont stylesheet

+

A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the Fontspring blog post about it. The code for it is as follows:

+ + + +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} + + +

We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:

+ <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + +

3. Modify your own stylesheet

+

To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:

+p { font-family: 'MyWebFont', Arial, sans-serif; } + +

4. Test

+

Getting webfonts to work cross-browser can be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.

+
+ + +
+ +
+ +
+ +
+ + diff --git a/To Sort/depixel/Webfonts/depixel_illegible_macroman/depixelillegible-webfont.eot b/To Sort/depixel/Webfonts/depixel_illegible_macroman/depixelillegible-webfont.eot new file mode 100644 index 0000000..3359b86 Binary files /dev/null and b/To Sort/depixel/Webfonts/depixel_illegible_macroman/depixelillegible-webfont.eot differ diff --git a/To Sort/depixel/Webfonts/depixel_illegible_macroman/depixelillegible-webfont.svg b/To Sort/depixel/Webfonts/depixel_illegible_macroman/depixelillegible-webfont.svg new file mode 100644 index 0000000..e9f4368 --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_illegible_macroman/depixelillegible-webfont.svg @@ -0,0 +1,222 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/To Sort/depixel/Webfonts/depixel_illegible_macroman/depixelillegible-webfont.ttf b/To Sort/depixel/Webfonts/depixel_illegible_macroman/depixelillegible-webfont.ttf new file mode 100644 index 0000000..67741ea Binary files /dev/null and b/To Sort/depixel/Webfonts/depixel_illegible_macroman/depixelillegible-webfont.ttf differ diff --git a/To Sort/depixel/Webfonts/depixel_illegible_macroman/depixelillegible-webfont.woff b/To Sort/depixel/Webfonts/depixel_illegible_macroman/depixelillegible-webfont.woff new file mode 100644 index 0000000..c2a4f7d Binary files /dev/null and b/To Sort/depixel/Webfonts/depixel_illegible_macroman/depixelillegible-webfont.woff differ diff --git a/To Sort/depixel/Webfonts/depixel_illegible_macroman/depixelillegible-webfont.woff2 b/To Sort/depixel/Webfonts/depixel_illegible_macroman/depixelillegible-webfont.woff2 new file mode 100644 index 0000000..1773d33 Binary files /dev/null and b/To Sort/depixel/Webfonts/depixel_illegible_macroman/depixelillegible-webfont.woff2 differ diff --git a/To Sort/depixel/Webfonts/depixel_illegible_macroman/specimen_files/easytabs.js b/To Sort/depixel/Webfonts/depixel_illegible_macroman/specimen_files/easytabs.js new file mode 100644 index 0000000..167f53b --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_illegible_macroman/specimen_files/easytabs.js @@ -0,0 +1,7 @@ +(function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} +if(typeof param.defaultContent=="number") +{var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} +$(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} +function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") +{$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} +$(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); \ No newline at end of file diff --git a/To Sort/depixel/Webfonts/depixel_illegible_macroman/specimen_files/grid_12-825-55-15.css b/To Sort/depixel/Webfonts/depixel_illegible_macroman/specimen_files/grid_12-825-55-15.css new file mode 100644 index 0000000..3d6aef7 --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_illegible_macroman/specimen_files/grid_12-825-55-15.css @@ -0,0 +1,129 @@ +/*Notes about grid: +Columns: 12 +Grid Width: 825px +Column Width: 55px +Gutter Width: 15px +-------------------------------*/ + + + +.section {margin-bottom: 18px; +} +.section:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;} +.section {*zoom: 1;} + +.section .firstcolumn, +.section .firstcol {margin-left: 0;} + + +/* Border on left hand side of a column. */ +.border { + padding-left: 7px; + margin-left: 7px; + border-left: 1px solid #eee; +} + +/* Border with more whitespace, spans one column. */ +.colborder { + padding-left: 42px; + margin-left: 42px; + border-left: 1px solid #eee; +} + + + +/* The Grid Classes */ +.grid1, .grid1_2cols, .grid1_3cols, .grid1_4cols, .grid2, .grid2_3cols, .grid2_4cols, .grid3, .grid3_2cols, .grid3_4cols, .grid4, .grid4_3cols, .grid5, .grid5_2cols, .grid5_3cols, .grid5_4cols, .grid6, .grid6_4cols, .grid7, .grid7_2cols, .grid7_3cols, .grid7_4cols, .grid8, .grid8_3cols, .grid9, .grid9_2cols, .grid9_4cols, .grid10, .grid10_3cols, .grid10_4cols, .grid11, .grid11_2cols, .grid11_3cols, .grid11_4cols, .grid12 +{margin-left: 15px;float: left;display: inline; overflow: hidden;} + + +.width1, .grid1, .span-1 {width: 55px;} +.width1_2cols,.grid1_2cols {width: 20px;} +.width1_3cols,.grid1_3cols {width: 8px;} +.width1_4cols,.grid1_4cols {width: 2px;} +.input_width1 {width: 49px;} + +.width2, .grid2, .span-2 {width: 125px;} +.width2_3cols,.grid2_3cols {width: 31px;} +.width2_4cols,.grid2_4cols {width: 20px;} +.input_width2 {width: 119px;} + +.width3, .grid3, .span-3 {width: 195px;} +.width3_2cols,.grid3_2cols {width: 90px;} +.width3_4cols,.grid3_4cols {width: 37px;} +.input_width3 {width: 189px;} + +.width4, .grid4, .span-4 {width: 265px;} +.width4_3cols,.grid4_3cols {width: 78px;} +.input_width4 {width: 259px;} + +.width5, .grid5, .span-5 {width: 335px;} +.width5_2cols,.grid5_2cols {width: 160px;} +.width5_3cols,.grid5_3cols {width: 101px;} +.width5_4cols,.grid5_4cols {width: 72px;} +.input_width5 {width: 329px;} + +.width6, .grid6, .span-6 {width: 405px;} +.width6_4cols,.grid6_4cols {width: 90px;} +.input_width6 {width: 399px;} + +.width7, .grid7, .span-7 {width: 475px;} +.width7_2cols,.grid7_2cols {width: 230px;} +.width7_3cols,.grid7_3cols {width: 148px;} +.width7_4cols,.grid7_4cols {width: 107px;} +.input_width7 {width: 469px;} + +.width8, .grid8, .span-8 {width: 545px;} +.width8_3cols,.grid8_3cols {width: 171px;} +.input_width8 {width: 539px;} + +.width9, .grid9, .span-9 {width: 615px;} +.width9_2cols,.grid9_2cols {width: 300px;} +.width9_4cols,.grid9_4cols {width: 142px;} +.input_width9 {width: 609px;} + +.width10, .grid10, .span-10 {width: 685px;} +.width10_3cols,.grid10_3cols {width: 218px;} +.width10_4cols,.grid10_4cols {width: 160px;} +.input_width10 {width: 679px;} + +.width11, .grid11, .span-11 {width: 755px;} +.width11_2cols,.grid11_2cols {width: 370px;} +.width11_3cols,.grid11_3cols {width: 241px;} +.width11_4cols,.grid11_4cols {width: 177px;} +.input_width11 {width: 749px;} + +.width12, .grid12, .span-12 {width: 825px;} +.input_width12 {width: 819px;} + +/* Subdivided grid spaces */ +.emptycols_left1, .prepend-1 {padding-left: 70px;} +.emptycols_right1, .append-1 {padding-right: 70px;} +.emptycols_left2, .prepend-2 {padding-left: 140px;} +.emptycols_right2, .append-2 {padding-right: 140px;} +.emptycols_left3, .prepend-3 {padding-left: 210px;} +.emptycols_right3, .append-3 {padding-right: 210px;} +.emptycols_left4, .prepend-4 {padding-left: 280px;} +.emptycols_right4, .append-4 {padding-right: 280px;} +.emptycols_left5, .prepend-5 {padding-left: 350px;} +.emptycols_right5, .append-5 {padding-right: 350px;} +.emptycols_left6, .prepend-6 {padding-left: 420px;} +.emptycols_right6, .append-6 {padding-right: 420px;} +.emptycols_left7, .prepend-7 {padding-left: 490px;} +.emptycols_right7, .append-7 {padding-right: 490px;} +.emptycols_left8, .prepend-8 {padding-left: 560px;} +.emptycols_right8, .append-8 {padding-right: 560px;} +.emptycols_left9, .prepend-9 {padding-left: 630px;} +.emptycols_right9, .append-9 {padding-right: 630px;} +.emptycols_left10, .prepend-10 {padding-left: 700px;} +.emptycols_right10, .append-10 {padding-right: 700px;} +.emptycols_left11, .prepend-11 {padding-left: 770px;} +.emptycols_right11, .append-11 {padding-right: 770px;} +.pull-1 {margin-left: -70px;} +.push-1 {margin-right: -70px;margin-left: 18px;float: right;} +.pull-2 {margin-left: -140px;} +.push-2 {margin-right: -140px;margin-left: 18px;float: right;} +.pull-3 {margin-left: -210px;} +.push-3 {margin-right: -210px;margin-left: 18px;float: right;} +.pull-4 {margin-left: -280px;} +.push-4 {margin-right: -280px;margin-left: 18px;float: right;} \ No newline at end of file diff --git a/To Sort/depixel/Webfonts/depixel_illegible_macroman/specimen_files/specimen_stylesheet.css b/To Sort/depixel/Webfonts/depixel_illegible_macroman/specimen_files/specimen_stylesheet.css new file mode 100644 index 0000000..aecc43c --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_illegible_macroman/specimen_files/specimen_stylesheet.css @@ -0,0 +1,396 @@ +@import url('grid_12-825-55-15.css'); + +/* + CSS Reset by Eric Meyer - Released under Public Domain + http://meyerweb.com/eric/tools/css/reset/ +*/ +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, font, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, center, dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, table, +caption, tbody, tfoot, thead, tr, th, td + {margin: 0;padding: 0;border: 0;outline: 0; + font-size: 100%;vertical-align: baseline; + background: transparent;} +body {line-height: 1;} +ol, ul {list-style: none;} +blockquote, q {quotes: none;} +blockquote:before, blockquote:after, +q:before, q:after {content: ''; content: none;} +:focus {outline: 0;} +ins {text-decoration: none;} +del {text-decoration: line-through;} +table {border-collapse: collapse;border-spacing: 0;} + + + + +body { + color: #000; + background-color: #dcdcdc; +} + +a { + text-decoration: none; + color: #1883ba; +} + +h1{ + font-size: 32px; + font-weight: normal; + font-style: normal; + margin-bottom: 18px; +} + +h2{ + font-size: 18px; +} + +#container { + width: 865px; + margin: 0px auto; +} + + +#header { + padding: 20px; + font-size: 36px; + background-color: #000; + color: #fff; +} + +#header span { + color: #666; +} +#main_content { + background-color: #fff; + padding: 60px 20px 20px; +} + + +#footer p { + margin: 0; + padding-top: 10px; + padding-bottom: 50px; + color: #333; + font: 10px Arial, sans-serif; +} + +.tabs { + width: 100%; + height: 31px; + background-color: #444; +} +.tabs li { + float: left; + margin: 0; + overflow: hidden; + background-color: #444; +} +.tabs li a { + display: block; + color: #fff; + text-decoration: none; + font: bold 11px/11px 'Arial'; + text-transform: uppercase; + padding: 10px 15px; + border-right: 1px solid #fff; +} + +.tabs li a:hover { + background-color: #00b3ff; + +} + +.tabs li.active a { + color: #000; + background-color: #fff; +} + + + +div.huge { + + font-size: 300px; + line-height: 1em; + padding: 0; + letter-spacing: -.02em; + overflow: hidden; +} +div.glyph_range { + font-size: 72px; + line-height: 1.1em; +} + +.size10{ font-size: 10px; } +.size11{ font-size: 11px; } +.size12{ font-size: 12px; } +.size13{ font-size: 13px; } +.size14{ font-size: 14px; } +.size16{ font-size: 16px; } +.size18{ font-size: 18px; } +.size20{ font-size: 20px; } +.size24{ font-size: 24px; } +.size30{ font-size: 30px; } +.size36{ font-size: 36px; } +.size48{ font-size: 48px; } +.size60{ font-size: 60px; } +.size72{ font-size: 72px; } +.size90{ font-size: 90px; } + + +.psample_row1 { height: 120px;} +.psample_row1 { height: 120px;} +.psample_row2 { height: 160px;} +.psample_row3 { height: 160px;} +.psample_row4 { height: 160px;} + +.psample { + overflow: hidden; + position: relative; +} +.psample p { + line-height: 1.3em; + display: block; + overflow: hidden; + margin: 0; +} + +.psample span { + margin-right: .5em; +} + +.white_blend { + width: 100%; + height: 61px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNrs3TsKgFAMRUE/eer+NxztxMYuEWQG3ECKwwUF58ycAKixOAGAyAKILAAiCyCyACILgMgCiCyAyAIgsgAiCyCyAIgsgMgCiCwAIgsgsgAiC4DIAogsACIL0CWuZ3UGgLrIhjMA1EV2OAOAJQtgyQLwjOzmDAAiCyCyAIgsQFtkd2cAEFkAkQVAZAHaIns4A4AlC2DJAiCyACILILIAiCzAV5H1dQGAJQsgsgCILIDIAvwisl58AViyAJYsACILILIAIgvAe2T9EhxAZAFEFgCRBeiL7HAGgLrIhjMAWLIAliwAt1OAAQDwygTBulLIlQAAAABJRU5ErkJggg==); + position: absolute; + bottom: 0; +} +.black_blend { + width: 100%; + height: 61px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNrs3TEKhTAQRVGjibr/9QoxhY2N3Ywo50A28IrLwP9g6b1PAMSYTQAgsgAiC4DIAogsgMgCILIAIgsgsgCILIDIAogsACILILIAIguAyAKILIDIAiCyACILgMgCZCnjLWYAiFGvB0BQZJsZAFyyAC5ZAO6RXc0AILIAIguAyAKkRXYzA4DIAogsACILkBbZ3QwALlkAlywAIgsgsgAiC4DIArwVWf8uAHDJAogsACILILIAv4isH74AXLIALlkARBZAZAFEFoDnyPokOIDIAogsACILkBfZZgaAuMhWMwC4ZAE+p4x3mAEgxinAAJ+XBbPWGkwAAAAAAElFTkSuQmCC); + position: absolute; + bottom: 0; +} +.fullreverse { + background: #000 !important; + color: #fff !important; + margin-left: -20px; + padding-left: 20px; + margin-right: -20px; + padding-right: 20px; + padding: 20px; + margin-bottom:0; +} + + +.sample_table td { + padding-top: 3px; + padding-bottom:5px; + padding-left: 5px; + vertical-align: middle; + line-height: 1.2em; +} + +.sample_table td:first-child { + background-color: #eee; + text-align: right; + padding-right: 5px; + padding-left: 0; + padding: 5px; + font: 11px/12px "Courier New", Courier, mono; +} + +code { + white-space: pre; + background-color: #eee; + display: block; + padding: 10px; + margin-bottom: 18px; + overflow: auto; +} + + +.bottom,.last {margin-bottom:0 !important; padding-bottom:0 !important;} + +.box { + padding: 18px; + margin-bottom: 18px; + background: #eee; +} + +.reverse,.reversed { background: #000 !important;color: #fff !important; border: none !important;} + +#bodycomparison { + position: relative; + overflow: hidden; + font-size: 72px; + height: 90px; + white-space: nowrap; +} + +#bodycomparison div{ + font-size: 72px; + line-height: 90px; + display: inline; + margin: 0 15px 0 0; + padding: 0; +} + +#bodycomparison div span{ + font: 10px Arial; + position: absolute; + left: 0; +} +#xheight { + float: none; + position: absolute; + color: #d9f3ff; + font-size: 72px; + line-height: 90px; +} + +.fontbody { + position: relative; +} +.arialbody{ + font-family: Arial; + position: relative; +} +.verdanabody{ + font-family: Verdana; + position: relative; +} +.georgiabody{ + font-family: Georgia; + position: relative; +} + +/* @group Layout page + */ + +#layout h1 { + font-size: 36px; + line-height: 42px; + font-weight: normal; + font-style: normal; +} + +#layout h2 { + font-size: 24px; + line-height: 23px; + font-weight: normal; + font-style: normal; +} + +#layout h3 { + font-size: 22px; + line-height: 1.4em; + margin-top: 1em; + font-weight: normal; + font-style: normal; +} + + +#layout p.byline { + font-size: 12px; + margin-top: 18px; + line-height: 12px; + margin-bottom: 0; +} +#layout p { + font-size: 14px; + line-height: 21px; + margin-bottom: .5em; +} + +#layout p.large{ + font-size: 18px; + line-height: 26px; +} + +#layout .sidebar p{ + font-size: 12px; + line-height: 1.4em; +} + +#layout p.caption { + font-size: 10px; + margin-top: -16px; + margin-bottom: 18px; +} + +/* @end */ + +/* @group Glyphs */ + +#glyph_chart div{ + background-color: #d9f3ff; + color: black; + float: left; + font-size: 36px; + height: 1.2em; + line-height: 1.2em; + margin-bottom: 1px; + margin-right: 1px; + text-align: center; + width: 1.2em; + position: relative; + padding: .6em .2em .2em; +} + +#glyph_chart div p { + position: absolute; + left: 0; + top: 0; + display: block; + text-align: center; + font: bold 9px Arial, sans-serif; + background-color: #3a768f; + width: 100%; + color: #fff; + padding: 2px 0; +} + + +#glyphs h1 { + font-family: Arial, sans-serif; +} +/* @end */ + +/* @group Installing */ + +#installing { + font: 13px Arial, sans-serif; +} + +#installing p, +#glyphs p{ + line-height: 1.2em; + margin-bottom: 18px; + font: 13px Arial, sans-serif; +} + + + +#installing h3{ + font-size: 15px; + margin-top: 18px; +} + +/* @end */ + +#rendering h1 { + font-family: Arial, sans-serif; +} +.render_table td { + font: 11px "Courier New", Courier, mono; + vertical-align: middle; +} + + diff --git a/To Sort/depixel/Webfonts/depixel_illegible_macroman/stylesheet.css b/To Sort/depixel/Webfonts/depixel_illegible_macroman/stylesheet.css new file mode 100644 index 0000000..d697f43 --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_illegible_macroman/stylesheet.css @@ -0,0 +1,37 @@ +/* + * Web Fonts from fontspring.com + * + * All OpenType features and all extended glyphs have been removed. + * Fully installable fonts can be purchased at http://www.fontspring.com + * + * The fonts included in this stylesheet are subject to the End User License you purchased + * from Fontspring. The fonts are protected under domestic and international trademark and + * copyright law. You are prohibited from modifying, reverse engineering, duplicating, or + * distributing this font software. + * + * (c) 2010-2017 Fontspring + * + * + * + * + * The fonts included are copyrighted by the vendor listed below. + * + * Vendor: ingoFonts + * License URL: https://www.fontspring.com/licenses/ingofonts/webfont + * + * + */ + +@font-face { + font-family: 'depixelillegible'; + src: url('depixelillegible-webfont.eot'); + src: url('depixelillegible-webfont.eot?#iefix') format('embedded-opentype'), + url('depixelillegible-webfont.woff2') format('woff2'), + url('depixelillegible-webfont.woff') format('woff'), + url('depixelillegible-webfont.ttf') format('truetype'), + url('depixelillegible-webfont.svg#depixelillegible') format('svg'); + font-weight: normal; + font-style: normal; + +} + diff --git a/To Sort/depixel/Webfonts/depixel_klein_macroman/depixelklein-demo.html b/To Sort/depixel/Webfonts/depixel_klein_macroman/depixelklein-demo.html new file mode 100644 index 0000000..af8a8e2 --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_klein_macroman/depixelklein-demo.html @@ -0,0 +1,382 @@ + + + + + + + + + + + + +DePixel Klein Specimen + + + + + + +
+ + + +
+ + +
+ +
+
+
AaBb
+
+
+ +
+
A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;
+
+
+
+ + + + + + + + + + + + + + + + +
10abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
11abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
12abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
13abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
14abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
16abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
18abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
20abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
24abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
30abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
36abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
48abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
60abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
72abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
90abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
+ +
+ +
+ + + +
+ + +
+
body
body
body
body
+
+ bodyDePixel Klein +
+
+ bodyArial +
+
+ bodyVerdana +
+
+ bodyGeorgia +
+ + + +
+ + +
+ +
+

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+
+
+

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+ +
+ +
+ +
+
+

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+ +
+ +
+ +
+
+

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+ +
+ + + +
+
+

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+ +
+
+

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+ +
+
+

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+ +
+ +
+ +
+
+

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+ +
+ + + + +
+ +
+ +
+ +
+

Lorem Ipsum Dolor

+

Etiam porta sem malesuada magna mollis euismod

+ + +
+
+
+
+

Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

+ + +

Pellentesque ornare sem

+ +

Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit.

+ +

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

+ +

Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur.

+ +

Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla.

+ +

Cras mattis consectetur

+ +

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum.

+ +

Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.

+
+ + +
+ +
+ + + + + + +
+
+
+ +

Language Support

+

The subset of DePixel Klein in this kit supports the following languages:
+ + Albanian, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Basque, Bislama, Breton, Cebuano, Chamorro, Corsican, Danish, Demo, English, Faroese, Fijian, Finnish, French Creole (Saint Lucia), Frisian, Galician, Genoese, German, Gilbertese (Kiribati), Greenlandic, Haitian Creole, Hiligaynon, Hmong, Hopi, Ibanag, Icelandic, Iloko (Ilokano), Indonesian, Interglossa (Glosa), Interlingua, Irish (Gaelic), Italian, Jèrriais, Latin Basic, Lojban, Lombard, Luxembourgian, Malagasy, Manx, Mohawk, Norfolk/Pitcairnese, Norwegian, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Portuguese, Potawatomi, Rhaeto-Romance, Romansh (Rumantsch), Rotokas, Sami (Lule), Sardinian (Sardu), Scots (Gaelic), Seychellois Creole (Seselwa), Shona, Sicilian, Somali, Southern Ndebele, Spanish, Swahili, Swati/Swazi, Swedish, Tagalog (Filipino/Pilipino), Tetum (Tetun), Tok Pisin, ubasic, Uyghur (Latinized), Volapük, Walloon, Warlpiri, Xhosa, Yapese, Zulu

+

Glyph Chart

+

The subset of DePixel Klein in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.

+
+ +
+
+ + +
+
+ + +
+ +
+ +
+
+
+

Installing Webfonts

+ +

Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.

+ +

1. Upload your webfonts

+

You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.

+ +

2. Include the webfont stylesheet

+

A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the Fontspring blog post about it. The code for it is as follows:

+ + + +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} + + +

We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:

+ <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + +

3. Modify your own stylesheet

+

To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:

+p { font-family: 'MyWebFont', Arial, sans-serif; } + +

4. Test

+

Getting webfonts to work cross-browser can be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.

+
+ + +
+ +
+ +
+ +
+ + diff --git a/To Sort/depixel/Webfonts/depixel_klein_macroman/depixelklein-webfont.eot b/To Sort/depixel/Webfonts/depixel_klein_macroman/depixelklein-webfont.eot new file mode 100644 index 0000000..04b362a Binary files /dev/null and b/To Sort/depixel/Webfonts/depixel_klein_macroman/depixelklein-webfont.eot differ diff --git a/To Sort/depixel/Webfonts/depixel_klein_macroman/depixelklein-webfont.svg b/To Sort/depixel/Webfonts/depixel_klein_macroman/depixelklein-webfont.svg new file mode 100644 index 0000000..5f2d1cc --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_klein_macroman/depixelklein-webfont.svg @@ -0,0 +1,221 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/To Sort/depixel/Webfonts/depixel_klein_macroman/depixelklein-webfont.ttf b/To Sort/depixel/Webfonts/depixel_klein_macroman/depixelklein-webfont.ttf new file mode 100644 index 0000000..6bb1979 Binary files /dev/null and b/To Sort/depixel/Webfonts/depixel_klein_macroman/depixelklein-webfont.ttf differ diff --git a/To Sort/depixel/Webfonts/depixel_klein_macroman/depixelklein-webfont.woff b/To Sort/depixel/Webfonts/depixel_klein_macroman/depixelklein-webfont.woff new file mode 100644 index 0000000..2c5de75 Binary files /dev/null and b/To Sort/depixel/Webfonts/depixel_klein_macroman/depixelklein-webfont.woff differ diff --git a/To Sort/depixel/Webfonts/depixel_klein_macroman/depixelklein-webfont.woff2 b/To Sort/depixel/Webfonts/depixel_klein_macroman/depixelklein-webfont.woff2 new file mode 100644 index 0000000..5afa063 Binary files /dev/null and b/To Sort/depixel/Webfonts/depixel_klein_macroman/depixelklein-webfont.woff2 differ diff --git a/To Sort/depixel/Webfonts/depixel_klein_macroman/specimen_files/easytabs.js b/To Sort/depixel/Webfonts/depixel_klein_macroman/specimen_files/easytabs.js new file mode 100644 index 0000000..167f53b --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_klein_macroman/specimen_files/easytabs.js @@ -0,0 +1,7 @@ +(function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} +if(typeof param.defaultContent=="number") +{var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} +$(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} +function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") +{$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} +$(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); \ No newline at end of file diff --git a/To Sort/depixel/Webfonts/depixel_klein_macroman/specimen_files/grid_12-825-55-15.css b/To Sort/depixel/Webfonts/depixel_klein_macroman/specimen_files/grid_12-825-55-15.css new file mode 100644 index 0000000..3d6aef7 --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_klein_macroman/specimen_files/grid_12-825-55-15.css @@ -0,0 +1,129 @@ +/*Notes about grid: +Columns: 12 +Grid Width: 825px +Column Width: 55px +Gutter Width: 15px +-------------------------------*/ + + + +.section {margin-bottom: 18px; +} +.section:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;} +.section {*zoom: 1;} + +.section .firstcolumn, +.section .firstcol {margin-left: 0;} + + +/* Border on left hand side of a column. */ +.border { + padding-left: 7px; + margin-left: 7px; + border-left: 1px solid #eee; +} + +/* Border with more whitespace, spans one column. */ +.colborder { + padding-left: 42px; + margin-left: 42px; + border-left: 1px solid #eee; +} + + + +/* The Grid Classes */ +.grid1, .grid1_2cols, .grid1_3cols, .grid1_4cols, .grid2, .grid2_3cols, .grid2_4cols, .grid3, .grid3_2cols, .grid3_4cols, .grid4, .grid4_3cols, .grid5, .grid5_2cols, .grid5_3cols, .grid5_4cols, .grid6, .grid6_4cols, .grid7, .grid7_2cols, .grid7_3cols, .grid7_4cols, .grid8, .grid8_3cols, .grid9, .grid9_2cols, .grid9_4cols, .grid10, .grid10_3cols, .grid10_4cols, .grid11, .grid11_2cols, .grid11_3cols, .grid11_4cols, .grid12 +{margin-left: 15px;float: left;display: inline; overflow: hidden;} + + +.width1, .grid1, .span-1 {width: 55px;} +.width1_2cols,.grid1_2cols {width: 20px;} +.width1_3cols,.grid1_3cols {width: 8px;} +.width1_4cols,.grid1_4cols {width: 2px;} +.input_width1 {width: 49px;} + +.width2, .grid2, .span-2 {width: 125px;} +.width2_3cols,.grid2_3cols {width: 31px;} +.width2_4cols,.grid2_4cols {width: 20px;} +.input_width2 {width: 119px;} + +.width3, .grid3, .span-3 {width: 195px;} +.width3_2cols,.grid3_2cols {width: 90px;} +.width3_4cols,.grid3_4cols {width: 37px;} +.input_width3 {width: 189px;} + +.width4, .grid4, .span-4 {width: 265px;} +.width4_3cols,.grid4_3cols {width: 78px;} +.input_width4 {width: 259px;} + +.width5, .grid5, .span-5 {width: 335px;} +.width5_2cols,.grid5_2cols {width: 160px;} +.width5_3cols,.grid5_3cols {width: 101px;} +.width5_4cols,.grid5_4cols {width: 72px;} +.input_width5 {width: 329px;} + +.width6, .grid6, .span-6 {width: 405px;} +.width6_4cols,.grid6_4cols {width: 90px;} +.input_width6 {width: 399px;} + +.width7, .grid7, .span-7 {width: 475px;} +.width7_2cols,.grid7_2cols {width: 230px;} +.width7_3cols,.grid7_3cols {width: 148px;} +.width7_4cols,.grid7_4cols {width: 107px;} +.input_width7 {width: 469px;} + +.width8, .grid8, .span-8 {width: 545px;} +.width8_3cols,.grid8_3cols {width: 171px;} +.input_width8 {width: 539px;} + +.width9, .grid9, .span-9 {width: 615px;} +.width9_2cols,.grid9_2cols {width: 300px;} +.width9_4cols,.grid9_4cols {width: 142px;} +.input_width9 {width: 609px;} + +.width10, .grid10, .span-10 {width: 685px;} +.width10_3cols,.grid10_3cols {width: 218px;} +.width10_4cols,.grid10_4cols {width: 160px;} +.input_width10 {width: 679px;} + +.width11, .grid11, .span-11 {width: 755px;} +.width11_2cols,.grid11_2cols {width: 370px;} +.width11_3cols,.grid11_3cols {width: 241px;} +.width11_4cols,.grid11_4cols {width: 177px;} +.input_width11 {width: 749px;} + +.width12, .grid12, .span-12 {width: 825px;} +.input_width12 {width: 819px;} + +/* Subdivided grid spaces */ +.emptycols_left1, .prepend-1 {padding-left: 70px;} +.emptycols_right1, .append-1 {padding-right: 70px;} +.emptycols_left2, .prepend-2 {padding-left: 140px;} +.emptycols_right2, .append-2 {padding-right: 140px;} +.emptycols_left3, .prepend-3 {padding-left: 210px;} +.emptycols_right3, .append-3 {padding-right: 210px;} +.emptycols_left4, .prepend-4 {padding-left: 280px;} +.emptycols_right4, .append-4 {padding-right: 280px;} +.emptycols_left5, .prepend-5 {padding-left: 350px;} +.emptycols_right5, .append-5 {padding-right: 350px;} +.emptycols_left6, .prepend-6 {padding-left: 420px;} +.emptycols_right6, .append-6 {padding-right: 420px;} +.emptycols_left7, .prepend-7 {padding-left: 490px;} +.emptycols_right7, .append-7 {padding-right: 490px;} +.emptycols_left8, .prepend-8 {padding-left: 560px;} +.emptycols_right8, .append-8 {padding-right: 560px;} +.emptycols_left9, .prepend-9 {padding-left: 630px;} +.emptycols_right9, .append-9 {padding-right: 630px;} +.emptycols_left10, .prepend-10 {padding-left: 700px;} +.emptycols_right10, .append-10 {padding-right: 700px;} +.emptycols_left11, .prepend-11 {padding-left: 770px;} +.emptycols_right11, .append-11 {padding-right: 770px;} +.pull-1 {margin-left: -70px;} +.push-1 {margin-right: -70px;margin-left: 18px;float: right;} +.pull-2 {margin-left: -140px;} +.push-2 {margin-right: -140px;margin-left: 18px;float: right;} +.pull-3 {margin-left: -210px;} +.push-3 {margin-right: -210px;margin-left: 18px;float: right;} +.pull-4 {margin-left: -280px;} +.push-4 {margin-right: -280px;margin-left: 18px;float: right;} \ No newline at end of file diff --git a/To Sort/depixel/Webfonts/depixel_klein_macroman/specimen_files/specimen_stylesheet.css b/To Sort/depixel/Webfonts/depixel_klein_macroman/specimen_files/specimen_stylesheet.css new file mode 100644 index 0000000..aecc43c --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_klein_macroman/specimen_files/specimen_stylesheet.css @@ -0,0 +1,396 @@ +@import url('grid_12-825-55-15.css'); + +/* + CSS Reset by Eric Meyer - Released under Public Domain + http://meyerweb.com/eric/tools/css/reset/ +*/ +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, font, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, center, dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, table, +caption, tbody, tfoot, thead, tr, th, td + {margin: 0;padding: 0;border: 0;outline: 0; + font-size: 100%;vertical-align: baseline; + background: transparent;} +body {line-height: 1;} +ol, ul {list-style: none;} +blockquote, q {quotes: none;} +blockquote:before, blockquote:after, +q:before, q:after {content: ''; content: none;} +:focus {outline: 0;} +ins {text-decoration: none;} +del {text-decoration: line-through;} +table {border-collapse: collapse;border-spacing: 0;} + + + + +body { + color: #000; + background-color: #dcdcdc; +} + +a { + text-decoration: none; + color: #1883ba; +} + +h1{ + font-size: 32px; + font-weight: normal; + font-style: normal; + margin-bottom: 18px; +} + +h2{ + font-size: 18px; +} + +#container { + width: 865px; + margin: 0px auto; +} + + +#header { + padding: 20px; + font-size: 36px; + background-color: #000; + color: #fff; +} + +#header span { + color: #666; +} +#main_content { + background-color: #fff; + padding: 60px 20px 20px; +} + + +#footer p { + margin: 0; + padding-top: 10px; + padding-bottom: 50px; + color: #333; + font: 10px Arial, sans-serif; +} + +.tabs { + width: 100%; + height: 31px; + background-color: #444; +} +.tabs li { + float: left; + margin: 0; + overflow: hidden; + background-color: #444; +} +.tabs li a { + display: block; + color: #fff; + text-decoration: none; + font: bold 11px/11px 'Arial'; + text-transform: uppercase; + padding: 10px 15px; + border-right: 1px solid #fff; +} + +.tabs li a:hover { + background-color: #00b3ff; + +} + +.tabs li.active a { + color: #000; + background-color: #fff; +} + + + +div.huge { + + font-size: 300px; + line-height: 1em; + padding: 0; + letter-spacing: -.02em; + overflow: hidden; +} +div.glyph_range { + font-size: 72px; + line-height: 1.1em; +} + +.size10{ font-size: 10px; } +.size11{ font-size: 11px; } +.size12{ font-size: 12px; } +.size13{ font-size: 13px; } +.size14{ font-size: 14px; } +.size16{ font-size: 16px; } +.size18{ font-size: 18px; } +.size20{ font-size: 20px; } +.size24{ font-size: 24px; } +.size30{ font-size: 30px; } +.size36{ font-size: 36px; } +.size48{ font-size: 48px; } +.size60{ font-size: 60px; } +.size72{ font-size: 72px; } +.size90{ font-size: 90px; } + + +.psample_row1 { height: 120px;} +.psample_row1 { height: 120px;} +.psample_row2 { height: 160px;} +.psample_row3 { height: 160px;} +.psample_row4 { height: 160px;} + +.psample { + overflow: hidden; + position: relative; +} +.psample p { + line-height: 1.3em; + display: block; + overflow: hidden; + margin: 0; +} + +.psample span { + margin-right: .5em; +} + +.white_blend { + width: 100%; + height: 61px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNrs3TsKgFAMRUE/eer+NxztxMYuEWQG3ECKwwUF58ycAKixOAGAyAKILAAiCyCyACILgMgCiCyAyAIgsgAiCyCyAIgsgMgCiCwAIgsgsgAiC4DIAogsACIL0CWuZ3UGgLrIhjMA1EV2OAOAJQtgyQLwjOzmDAAiCyCyAIgsQFtkd2cAEFkAkQVAZAHaIns4A4AlC2DJAiCyACILILIAiCzAV5H1dQGAJQsgsgCILIDIAvwisl58AViyAJYsACILILIAIgvAe2T9EhxAZAFEFgCRBeiL7HAGgLrIhjMAWLIAliwAt1OAAQDwygTBulLIlQAAAABJRU5ErkJggg==); + position: absolute; + bottom: 0; +} +.black_blend { + width: 100%; + height: 61px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNrs3TEKhTAQRVGjibr/9QoxhY2N3Ywo50A28IrLwP9g6b1PAMSYTQAgsgAiC4DIAogsgMgCILIAIgsgsgCILIDIAogsACILILIAIguAyAKILIDIAiCyACILgMgCZCnjLWYAiFGvB0BQZJsZAFyyAC5ZAO6RXc0AILIAIguAyAKkRXYzA4DIAogsACILkBbZ3QwALlkAlywAIgsgsgAiC4DIArwVWf8uAHDJAogsACILILIAv4isH74AXLIALlkARBZAZAFEFoDnyPokOIDIAogsACILkBfZZgaAuMhWMwC4ZAE+p4x3mAEgxinAAJ+XBbPWGkwAAAAAAElFTkSuQmCC); + position: absolute; + bottom: 0; +} +.fullreverse { + background: #000 !important; + color: #fff !important; + margin-left: -20px; + padding-left: 20px; + margin-right: -20px; + padding-right: 20px; + padding: 20px; + margin-bottom:0; +} + + +.sample_table td { + padding-top: 3px; + padding-bottom:5px; + padding-left: 5px; + vertical-align: middle; + line-height: 1.2em; +} + +.sample_table td:first-child { + background-color: #eee; + text-align: right; + padding-right: 5px; + padding-left: 0; + padding: 5px; + font: 11px/12px "Courier New", Courier, mono; +} + +code { + white-space: pre; + background-color: #eee; + display: block; + padding: 10px; + margin-bottom: 18px; + overflow: auto; +} + + +.bottom,.last {margin-bottom:0 !important; padding-bottom:0 !important;} + +.box { + padding: 18px; + margin-bottom: 18px; + background: #eee; +} + +.reverse,.reversed { background: #000 !important;color: #fff !important; border: none !important;} + +#bodycomparison { + position: relative; + overflow: hidden; + font-size: 72px; + height: 90px; + white-space: nowrap; +} + +#bodycomparison div{ + font-size: 72px; + line-height: 90px; + display: inline; + margin: 0 15px 0 0; + padding: 0; +} + +#bodycomparison div span{ + font: 10px Arial; + position: absolute; + left: 0; +} +#xheight { + float: none; + position: absolute; + color: #d9f3ff; + font-size: 72px; + line-height: 90px; +} + +.fontbody { + position: relative; +} +.arialbody{ + font-family: Arial; + position: relative; +} +.verdanabody{ + font-family: Verdana; + position: relative; +} +.georgiabody{ + font-family: Georgia; + position: relative; +} + +/* @group Layout page + */ + +#layout h1 { + font-size: 36px; + line-height: 42px; + font-weight: normal; + font-style: normal; +} + +#layout h2 { + font-size: 24px; + line-height: 23px; + font-weight: normal; + font-style: normal; +} + +#layout h3 { + font-size: 22px; + line-height: 1.4em; + margin-top: 1em; + font-weight: normal; + font-style: normal; +} + + +#layout p.byline { + font-size: 12px; + margin-top: 18px; + line-height: 12px; + margin-bottom: 0; +} +#layout p { + font-size: 14px; + line-height: 21px; + margin-bottom: .5em; +} + +#layout p.large{ + font-size: 18px; + line-height: 26px; +} + +#layout .sidebar p{ + font-size: 12px; + line-height: 1.4em; +} + +#layout p.caption { + font-size: 10px; + margin-top: -16px; + margin-bottom: 18px; +} + +/* @end */ + +/* @group Glyphs */ + +#glyph_chart div{ + background-color: #d9f3ff; + color: black; + float: left; + font-size: 36px; + height: 1.2em; + line-height: 1.2em; + margin-bottom: 1px; + margin-right: 1px; + text-align: center; + width: 1.2em; + position: relative; + padding: .6em .2em .2em; +} + +#glyph_chart div p { + position: absolute; + left: 0; + top: 0; + display: block; + text-align: center; + font: bold 9px Arial, sans-serif; + background-color: #3a768f; + width: 100%; + color: #fff; + padding: 2px 0; +} + + +#glyphs h1 { + font-family: Arial, sans-serif; +} +/* @end */ + +/* @group Installing */ + +#installing { + font: 13px Arial, sans-serif; +} + +#installing p, +#glyphs p{ + line-height: 1.2em; + margin-bottom: 18px; + font: 13px Arial, sans-serif; +} + + + +#installing h3{ + font-size: 15px; + margin-top: 18px; +} + +/* @end */ + +#rendering h1 { + font-family: Arial, sans-serif; +} +.render_table td { + font: 11px "Courier New", Courier, mono; + vertical-align: middle; +} + + diff --git a/To Sort/depixel/Webfonts/depixel_klein_macroman/stylesheet.css b/To Sort/depixel/Webfonts/depixel_klein_macroman/stylesheet.css new file mode 100644 index 0000000..9e1897a --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_klein_macroman/stylesheet.css @@ -0,0 +1,37 @@ +/* + * Web Fonts from fontspring.com + * + * All OpenType features and all extended glyphs have been removed. + * Fully installable fonts can be purchased at http://www.fontspring.com + * + * The fonts included in this stylesheet are subject to the End User License you purchased + * from Fontspring. The fonts are protected under domestic and international trademark and + * copyright law. You are prohibited from modifying, reverse engineering, duplicating, or + * distributing this font software. + * + * (c) 2010-2017 Fontspring + * + * + * + * + * The fonts included are copyrighted by the vendor listed below. + * + * Vendor: ingoFonts + * License URL: https://www.fontspring.com/licenses/ingofonts/webfont + * + * + */ + +@font-face { + font-family: 'depixelklein'; + src: url('depixelklein-webfont.eot'); + src: url('depixelklein-webfont.eot?#iefix') format('embedded-opentype'), + url('depixelklein-webfont.woff2') format('woff2'), + url('depixelklein-webfont.woff') format('woff'), + url('depixelklein-webfont.ttf') format('truetype'), + url('depixelklein-webfont.svg#depixelklein') format('svg'); + font-weight: normal; + font-style: normal; + +} + diff --git a/To Sort/depixel/Webfonts/depixel_schmal_macroman/depixelschmal-demo.html b/To Sort/depixel/Webfonts/depixel_schmal_macroman/depixelschmal-demo.html new file mode 100644 index 0000000..9634033 --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_schmal_macroman/depixelschmal-demo.html @@ -0,0 +1,382 @@ + + + + + + + + + + + + +DePixel Schmal Specimen + + + + + + +
+ + + +
+ + +
+ +
+
+
AaBb
+
+
+ +
+
A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;
+
+
+
+ + + + + + + + + + + + + + + + +
10abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
11abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
12abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
13abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
14abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
16abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
18abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
20abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
24abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
30abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
36abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
48abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
60abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
72abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
90abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
+ +
+ +
+ + + +
+ + +
+
body
body
body
body
+
+ bodyDePixel Schmal +
+
+ bodyArial +
+
+ bodyVerdana +
+
+ bodyGeorgia +
+ + + +
+ + +
+ +
+

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+
+
+

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+ +
+ +
+ +
+
+

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+ +
+ +
+ +
+
+

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+ +
+ + + +
+
+

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+ +
+
+

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+ +
+
+

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+ +
+ +
+ +
+
+

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+ +
+ + + + +
+ +
+ +
+ +
+

Lorem Ipsum Dolor

+

Etiam porta sem malesuada magna mollis euismod

+ + +
+
+
+
+

Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

+ + +

Pellentesque ornare sem

+ +

Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit.

+ +

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

+ +

Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur.

+ +

Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla.

+ +

Cras mattis consectetur

+ +

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum.

+ +

Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.

+
+ + +
+ +
+ + + + + + +
+
+
+ +

Language Support

+

The subset of DePixel Schmal in this kit supports the following languages:
+ + Albanian, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Basque, Bislama, Breton, Cebuano, Chamorro, Corsican, Danish, Demo, English, Faroese, Fijian, Finnish, French Creole (Saint Lucia), Frisian, Galician, Genoese, German, Gilbertese (Kiribati), Greenlandic, Haitian Creole, Hiligaynon, Hmong, Hopi, Ibanag, Icelandic, Iloko (Ilokano), Indonesian, Interglossa (Glosa), Interlingua, Irish (Gaelic), Italian, Jèrriais, Latin Basic, Lojban, Lombard, Luxembourgian, Malagasy, Manx, Mohawk, Norfolk/Pitcairnese, Norwegian, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Portuguese, Potawatomi, Rhaeto-Romance, Romansh (Rumantsch), Rotokas, Sami (Lule), Sardinian (Sardu), Scots (Gaelic), Seychellois Creole (Seselwa), Shona, Sicilian, Somali, Southern Ndebele, Spanish, Swahili, Swati/Swazi, Swedish, Tagalog (Filipino/Pilipino), Tetum (Tetun), Tok Pisin, ubasic, Uyghur (Latinized), Volapük, Walloon, Warlpiri, Xhosa, Yapese, Zulu

+

Glyph Chart

+

The subset of DePixel Schmal in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.

+
+ +
+
+ + +
+
+ + +
+ +
+ +
+
+
+

Installing Webfonts

+ +

Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.

+ +

1. Upload your webfonts

+

You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.

+ +

2. Include the webfont stylesheet

+

A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the Fontspring blog post about it. The code for it is as follows:

+ + + +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} + + +

We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:

+ <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + +

3. Modify your own stylesheet

+

To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:

+p { font-family: 'MyWebFont', Arial, sans-serif; } + +

4. Test

+

Getting webfonts to work cross-browser can be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.

+
+ + +
+ +
+ +
+ +
+ + diff --git a/To Sort/depixel/Webfonts/depixel_schmal_macroman/depixelschmal-webfont.eot b/To Sort/depixel/Webfonts/depixel_schmal_macroman/depixelschmal-webfont.eot new file mode 100644 index 0000000..0403611 Binary files /dev/null and b/To Sort/depixel/Webfonts/depixel_schmal_macroman/depixelschmal-webfont.eot differ diff --git a/To Sort/depixel/Webfonts/depixel_schmal_macroman/depixelschmal-webfont.svg b/To Sort/depixel/Webfonts/depixel_schmal_macroman/depixelschmal-webfont.svg new file mode 100644 index 0000000..cddd2ab --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_schmal_macroman/depixelschmal-webfont.svg @@ -0,0 +1,222 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/To Sort/depixel/Webfonts/depixel_schmal_macroman/depixelschmal-webfont.ttf b/To Sort/depixel/Webfonts/depixel_schmal_macroman/depixelschmal-webfont.ttf new file mode 100644 index 0000000..ac9f7f1 Binary files /dev/null and b/To Sort/depixel/Webfonts/depixel_schmal_macroman/depixelschmal-webfont.ttf differ diff --git a/To Sort/depixel/Webfonts/depixel_schmal_macroman/depixelschmal-webfont.woff b/To Sort/depixel/Webfonts/depixel_schmal_macroman/depixelschmal-webfont.woff new file mode 100644 index 0000000..83fabe1 Binary files /dev/null and b/To Sort/depixel/Webfonts/depixel_schmal_macroman/depixelschmal-webfont.woff differ diff --git a/To Sort/depixel/Webfonts/depixel_schmal_macroman/depixelschmal-webfont.woff2 b/To Sort/depixel/Webfonts/depixel_schmal_macroman/depixelschmal-webfont.woff2 new file mode 100644 index 0000000..9f25baf Binary files /dev/null and b/To Sort/depixel/Webfonts/depixel_schmal_macroman/depixelschmal-webfont.woff2 differ diff --git a/To Sort/depixel/Webfonts/depixel_schmal_macroman/specimen_files/easytabs.js b/To Sort/depixel/Webfonts/depixel_schmal_macroman/specimen_files/easytabs.js new file mode 100644 index 0000000..167f53b --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_schmal_macroman/specimen_files/easytabs.js @@ -0,0 +1,7 @@ +(function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} +if(typeof param.defaultContent=="number") +{var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} +$(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} +function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") +{$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} +$(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); \ No newline at end of file diff --git a/To Sort/depixel/Webfonts/depixel_schmal_macroman/specimen_files/grid_12-825-55-15.css b/To Sort/depixel/Webfonts/depixel_schmal_macroman/specimen_files/grid_12-825-55-15.css new file mode 100644 index 0000000..3d6aef7 --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_schmal_macroman/specimen_files/grid_12-825-55-15.css @@ -0,0 +1,129 @@ +/*Notes about grid: +Columns: 12 +Grid Width: 825px +Column Width: 55px +Gutter Width: 15px +-------------------------------*/ + + + +.section {margin-bottom: 18px; +} +.section:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;} +.section {*zoom: 1;} + +.section .firstcolumn, +.section .firstcol {margin-left: 0;} + + +/* Border on left hand side of a column. */ +.border { + padding-left: 7px; + margin-left: 7px; + border-left: 1px solid #eee; +} + +/* Border with more whitespace, spans one column. */ +.colborder { + padding-left: 42px; + margin-left: 42px; + border-left: 1px solid #eee; +} + + + +/* The Grid Classes */ +.grid1, .grid1_2cols, .grid1_3cols, .grid1_4cols, .grid2, .grid2_3cols, .grid2_4cols, .grid3, .grid3_2cols, .grid3_4cols, .grid4, .grid4_3cols, .grid5, .grid5_2cols, .grid5_3cols, .grid5_4cols, .grid6, .grid6_4cols, .grid7, .grid7_2cols, .grid7_3cols, .grid7_4cols, .grid8, .grid8_3cols, .grid9, .grid9_2cols, .grid9_4cols, .grid10, .grid10_3cols, .grid10_4cols, .grid11, .grid11_2cols, .grid11_3cols, .grid11_4cols, .grid12 +{margin-left: 15px;float: left;display: inline; overflow: hidden;} + + +.width1, .grid1, .span-1 {width: 55px;} +.width1_2cols,.grid1_2cols {width: 20px;} +.width1_3cols,.grid1_3cols {width: 8px;} +.width1_4cols,.grid1_4cols {width: 2px;} +.input_width1 {width: 49px;} + +.width2, .grid2, .span-2 {width: 125px;} +.width2_3cols,.grid2_3cols {width: 31px;} +.width2_4cols,.grid2_4cols {width: 20px;} +.input_width2 {width: 119px;} + +.width3, .grid3, .span-3 {width: 195px;} +.width3_2cols,.grid3_2cols {width: 90px;} +.width3_4cols,.grid3_4cols {width: 37px;} +.input_width3 {width: 189px;} + +.width4, .grid4, .span-4 {width: 265px;} +.width4_3cols,.grid4_3cols {width: 78px;} +.input_width4 {width: 259px;} + +.width5, .grid5, .span-5 {width: 335px;} +.width5_2cols,.grid5_2cols {width: 160px;} +.width5_3cols,.grid5_3cols {width: 101px;} +.width5_4cols,.grid5_4cols {width: 72px;} +.input_width5 {width: 329px;} + +.width6, .grid6, .span-6 {width: 405px;} +.width6_4cols,.grid6_4cols {width: 90px;} +.input_width6 {width: 399px;} + +.width7, .grid7, .span-7 {width: 475px;} +.width7_2cols,.grid7_2cols {width: 230px;} +.width7_3cols,.grid7_3cols {width: 148px;} +.width7_4cols,.grid7_4cols {width: 107px;} +.input_width7 {width: 469px;} + +.width8, .grid8, .span-8 {width: 545px;} +.width8_3cols,.grid8_3cols {width: 171px;} +.input_width8 {width: 539px;} + +.width9, .grid9, .span-9 {width: 615px;} +.width9_2cols,.grid9_2cols {width: 300px;} +.width9_4cols,.grid9_4cols {width: 142px;} +.input_width9 {width: 609px;} + +.width10, .grid10, .span-10 {width: 685px;} +.width10_3cols,.grid10_3cols {width: 218px;} +.width10_4cols,.grid10_4cols {width: 160px;} +.input_width10 {width: 679px;} + +.width11, .grid11, .span-11 {width: 755px;} +.width11_2cols,.grid11_2cols {width: 370px;} +.width11_3cols,.grid11_3cols {width: 241px;} +.width11_4cols,.grid11_4cols {width: 177px;} +.input_width11 {width: 749px;} + +.width12, .grid12, .span-12 {width: 825px;} +.input_width12 {width: 819px;} + +/* Subdivided grid spaces */ +.emptycols_left1, .prepend-1 {padding-left: 70px;} +.emptycols_right1, .append-1 {padding-right: 70px;} +.emptycols_left2, .prepend-2 {padding-left: 140px;} +.emptycols_right2, .append-2 {padding-right: 140px;} +.emptycols_left3, .prepend-3 {padding-left: 210px;} +.emptycols_right3, .append-3 {padding-right: 210px;} +.emptycols_left4, .prepend-4 {padding-left: 280px;} +.emptycols_right4, .append-4 {padding-right: 280px;} +.emptycols_left5, .prepend-5 {padding-left: 350px;} +.emptycols_right5, .append-5 {padding-right: 350px;} +.emptycols_left6, .prepend-6 {padding-left: 420px;} +.emptycols_right6, .append-6 {padding-right: 420px;} +.emptycols_left7, .prepend-7 {padding-left: 490px;} +.emptycols_right7, .append-7 {padding-right: 490px;} +.emptycols_left8, .prepend-8 {padding-left: 560px;} +.emptycols_right8, .append-8 {padding-right: 560px;} +.emptycols_left9, .prepend-9 {padding-left: 630px;} +.emptycols_right9, .append-9 {padding-right: 630px;} +.emptycols_left10, .prepend-10 {padding-left: 700px;} +.emptycols_right10, .append-10 {padding-right: 700px;} +.emptycols_left11, .prepend-11 {padding-left: 770px;} +.emptycols_right11, .append-11 {padding-right: 770px;} +.pull-1 {margin-left: -70px;} +.push-1 {margin-right: -70px;margin-left: 18px;float: right;} +.pull-2 {margin-left: -140px;} +.push-2 {margin-right: -140px;margin-left: 18px;float: right;} +.pull-3 {margin-left: -210px;} +.push-3 {margin-right: -210px;margin-left: 18px;float: right;} +.pull-4 {margin-left: -280px;} +.push-4 {margin-right: -280px;margin-left: 18px;float: right;} \ No newline at end of file diff --git a/To Sort/depixel/Webfonts/depixel_schmal_macroman/specimen_files/specimen_stylesheet.css b/To Sort/depixel/Webfonts/depixel_schmal_macroman/specimen_files/specimen_stylesheet.css new file mode 100644 index 0000000..aecc43c --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_schmal_macroman/specimen_files/specimen_stylesheet.css @@ -0,0 +1,396 @@ +@import url('grid_12-825-55-15.css'); + +/* + CSS Reset by Eric Meyer - Released under Public Domain + http://meyerweb.com/eric/tools/css/reset/ +*/ +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, font, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, center, dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, table, +caption, tbody, tfoot, thead, tr, th, td + {margin: 0;padding: 0;border: 0;outline: 0; + font-size: 100%;vertical-align: baseline; + background: transparent;} +body {line-height: 1;} +ol, ul {list-style: none;} +blockquote, q {quotes: none;} +blockquote:before, blockquote:after, +q:before, q:after {content: ''; content: none;} +:focus {outline: 0;} +ins {text-decoration: none;} +del {text-decoration: line-through;} +table {border-collapse: collapse;border-spacing: 0;} + + + + +body { + color: #000; + background-color: #dcdcdc; +} + +a { + text-decoration: none; + color: #1883ba; +} + +h1{ + font-size: 32px; + font-weight: normal; + font-style: normal; + margin-bottom: 18px; +} + +h2{ + font-size: 18px; +} + +#container { + width: 865px; + margin: 0px auto; +} + + +#header { + padding: 20px; + font-size: 36px; + background-color: #000; + color: #fff; +} + +#header span { + color: #666; +} +#main_content { + background-color: #fff; + padding: 60px 20px 20px; +} + + +#footer p { + margin: 0; + padding-top: 10px; + padding-bottom: 50px; + color: #333; + font: 10px Arial, sans-serif; +} + +.tabs { + width: 100%; + height: 31px; + background-color: #444; +} +.tabs li { + float: left; + margin: 0; + overflow: hidden; + background-color: #444; +} +.tabs li a { + display: block; + color: #fff; + text-decoration: none; + font: bold 11px/11px 'Arial'; + text-transform: uppercase; + padding: 10px 15px; + border-right: 1px solid #fff; +} + +.tabs li a:hover { + background-color: #00b3ff; + +} + +.tabs li.active a { + color: #000; + background-color: #fff; +} + + + +div.huge { + + font-size: 300px; + line-height: 1em; + padding: 0; + letter-spacing: -.02em; + overflow: hidden; +} +div.glyph_range { + font-size: 72px; + line-height: 1.1em; +} + +.size10{ font-size: 10px; } +.size11{ font-size: 11px; } +.size12{ font-size: 12px; } +.size13{ font-size: 13px; } +.size14{ font-size: 14px; } +.size16{ font-size: 16px; } +.size18{ font-size: 18px; } +.size20{ font-size: 20px; } +.size24{ font-size: 24px; } +.size30{ font-size: 30px; } +.size36{ font-size: 36px; } +.size48{ font-size: 48px; } +.size60{ font-size: 60px; } +.size72{ font-size: 72px; } +.size90{ font-size: 90px; } + + +.psample_row1 { height: 120px;} +.psample_row1 { height: 120px;} +.psample_row2 { height: 160px;} +.psample_row3 { height: 160px;} +.psample_row4 { height: 160px;} + +.psample { + overflow: hidden; + position: relative; +} +.psample p { + line-height: 1.3em; + display: block; + overflow: hidden; + margin: 0; +} + +.psample span { + margin-right: .5em; +} + +.white_blend { + width: 100%; + height: 61px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNrs3TsKgFAMRUE/eer+NxztxMYuEWQG3ECKwwUF58ycAKixOAGAyAKILAAiCyCyACILgMgCiCyAyAIgsgAiCyCyAIgsgMgCiCwAIgsgsgAiC4DIAogsACIL0CWuZ3UGgLrIhjMA1EV2OAOAJQtgyQLwjOzmDAAiCyCyAIgsQFtkd2cAEFkAkQVAZAHaIns4A4AlC2DJAiCyACILILIAiCzAV5H1dQGAJQsgsgCILIDIAvwisl58AViyAJYsACILILIAIgvAe2T9EhxAZAFEFgCRBeiL7HAGgLrIhjMAWLIAliwAt1OAAQDwygTBulLIlQAAAABJRU5ErkJggg==); + position: absolute; + bottom: 0; +} +.black_blend { + width: 100%; + height: 61px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNrs3TEKhTAQRVGjibr/9QoxhY2N3Ywo50A28IrLwP9g6b1PAMSYTQAgsgAiC4DIAogsgMgCILIAIgsgsgCILIDIAogsACILILIAIguAyAKILIDIAiCyACILgMgCZCnjLWYAiFGvB0BQZJsZAFyyAC5ZAO6RXc0AILIAIguAyAKkRXYzA4DIAogsACILkBbZ3QwALlkAlywAIgsgsgAiC4DIArwVWf8uAHDJAogsACILILIAv4isH74AXLIALlkARBZAZAFEFoDnyPokOIDIAogsACILkBfZZgaAuMhWMwC4ZAE+p4x3mAEgxinAAJ+XBbPWGkwAAAAAAElFTkSuQmCC); + position: absolute; + bottom: 0; +} +.fullreverse { + background: #000 !important; + color: #fff !important; + margin-left: -20px; + padding-left: 20px; + margin-right: -20px; + padding-right: 20px; + padding: 20px; + margin-bottom:0; +} + + +.sample_table td { + padding-top: 3px; + padding-bottom:5px; + padding-left: 5px; + vertical-align: middle; + line-height: 1.2em; +} + +.sample_table td:first-child { + background-color: #eee; + text-align: right; + padding-right: 5px; + padding-left: 0; + padding: 5px; + font: 11px/12px "Courier New", Courier, mono; +} + +code { + white-space: pre; + background-color: #eee; + display: block; + padding: 10px; + margin-bottom: 18px; + overflow: auto; +} + + +.bottom,.last {margin-bottom:0 !important; padding-bottom:0 !important;} + +.box { + padding: 18px; + margin-bottom: 18px; + background: #eee; +} + +.reverse,.reversed { background: #000 !important;color: #fff !important; border: none !important;} + +#bodycomparison { + position: relative; + overflow: hidden; + font-size: 72px; + height: 90px; + white-space: nowrap; +} + +#bodycomparison div{ + font-size: 72px; + line-height: 90px; + display: inline; + margin: 0 15px 0 0; + padding: 0; +} + +#bodycomparison div span{ + font: 10px Arial; + position: absolute; + left: 0; +} +#xheight { + float: none; + position: absolute; + color: #d9f3ff; + font-size: 72px; + line-height: 90px; +} + +.fontbody { + position: relative; +} +.arialbody{ + font-family: Arial; + position: relative; +} +.verdanabody{ + font-family: Verdana; + position: relative; +} +.georgiabody{ + font-family: Georgia; + position: relative; +} + +/* @group Layout page + */ + +#layout h1 { + font-size: 36px; + line-height: 42px; + font-weight: normal; + font-style: normal; +} + +#layout h2 { + font-size: 24px; + line-height: 23px; + font-weight: normal; + font-style: normal; +} + +#layout h3 { + font-size: 22px; + line-height: 1.4em; + margin-top: 1em; + font-weight: normal; + font-style: normal; +} + + +#layout p.byline { + font-size: 12px; + margin-top: 18px; + line-height: 12px; + margin-bottom: 0; +} +#layout p { + font-size: 14px; + line-height: 21px; + margin-bottom: .5em; +} + +#layout p.large{ + font-size: 18px; + line-height: 26px; +} + +#layout .sidebar p{ + font-size: 12px; + line-height: 1.4em; +} + +#layout p.caption { + font-size: 10px; + margin-top: -16px; + margin-bottom: 18px; +} + +/* @end */ + +/* @group Glyphs */ + +#glyph_chart div{ + background-color: #d9f3ff; + color: black; + float: left; + font-size: 36px; + height: 1.2em; + line-height: 1.2em; + margin-bottom: 1px; + margin-right: 1px; + text-align: center; + width: 1.2em; + position: relative; + padding: .6em .2em .2em; +} + +#glyph_chart div p { + position: absolute; + left: 0; + top: 0; + display: block; + text-align: center; + font: bold 9px Arial, sans-serif; + background-color: #3a768f; + width: 100%; + color: #fff; + padding: 2px 0; +} + + +#glyphs h1 { + font-family: Arial, sans-serif; +} +/* @end */ + +/* @group Installing */ + +#installing { + font: 13px Arial, sans-serif; +} + +#installing p, +#glyphs p{ + line-height: 1.2em; + margin-bottom: 18px; + font: 13px Arial, sans-serif; +} + + + +#installing h3{ + font-size: 15px; + margin-top: 18px; +} + +/* @end */ + +#rendering h1 { + font-family: Arial, sans-serif; +} +.render_table td { + font: 11px "Courier New", Courier, mono; + vertical-align: middle; +} + + diff --git a/To Sort/depixel/Webfonts/depixel_schmal_macroman/stylesheet.css b/To Sort/depixel/Webfonts/depixel_schmal_macroman/stylesheet.css new file mode 100644 index 0000000..ffcc4ee --- /dev/null +++ b/To Sort/depixel/Webfonts/depixel_schmal_macroman/stylesheet.css @@ -0,0 +1,37 @@ +/* + * Web Fonts from fontspring.com + * + * All OpenType features and all extended glyphs have been removed. + * Fully installable fonts can be purchased at http://www.fontspring.com + * + * The fonts included in this stylesheet are subject to the End User License you purchased + * from Fontspring. The fonts are protected under domestic and international trademark and + * copyright law. You are prohibited from modifying, reverse engineering, duplicating, or + * distributing this font software. + * + * (c) 2010-2017 Fontspring + * + * + * + * + * The fonts included are copyrighted by the vendor listed below. + * + * Vendor: ingoFonts + * License URL: https://www.fontspring.com/licenses/ingofonts/webfont + * + * + */ + +@font-face { + font-family: 'depixelschmal'; + src: url('depixelschmal-webfont.eot'); + src: url('depixelschmal-webfont.eot?#iefix') format('embedded-opentype'), + url('depixelschmal-webfont.woff2') format('woff2'), + url('depixelschmal-webfont.woff') format('woff'), + url('depixelschmal-webfont.ttf') format('truetype'), + url('depixelschmal-webfont.svg#depixelschmal') format('svg'); + font-weight: normal; + font-style: normal; + +} + diff --git a/To Sort/fresh-christmas-font-1764370888-0/Befonts-License.txt b/To Sort/fresh-christmas-font-1764370888-0/Befonts-License.txt new file mode 100644 index 0000000..558864a --- /dev/null +++ b/To Sort/fresh-christmas-font-1764370888-0/Befonts-License.txt @@ -0,0 +1,2 @@ +License: Free for Personal Use +Link: https://befonts.com/fresh-christmas-font.html diff --git a/To Sort/fresh-christmas-font-1764370888-0/Fresh-Christmas.otf b/To Sort/fresh-christmas-font-1764370888-0/Fresh-Christmas.otf new file mode 100644 index 0000000..8e50435 Binary files /dev/null and b/To Sort/fresh-christmas-font-1764370888-0/Fresh-Christmas.otf differ diff --git a/To Sort/introvert-font-2-1764371655-0/Befonts-License.txt b/To Sort/introvert-font-2-1764371655-0/Befonts-License.txt new file mode 100644 index 0000000..e6580bf --- /dev/null +++ b/To Sort/introvert-font-2-1764371655-0/Befonts-License.txt @@ -0,0 +1,2 @@ +License: Free for Personal Use +Link: https://befonts.com/introvert-font-2.html diff --git a/To Sort/introvert-font-2-1764371655-0/Introvert-BF691f1a5a2336d.otf b/To Sort/introvert-font-2-1764371655-0/Introvert-BF691f1a5a2336d.otf new file mode 100644 index 0000000..ee8f455 Binary files /dev/null and b/To Sort/introvert-font-2-1764371655-0/Introvert-BF691f1a5a2336d.otf differ diff --git a/To Sort/introvert-font-2-1764371655-0/Read-Me-BF691f1a59c629e.txt b/To Sort/introvert-font-2-1764371655-0/Read-Me-BF691f1a59c629e.txt new file mode 100644 index 0000000..d656cd0 --- /dev/null +++ b/To Sort/introvert-font-2-1764371655-0/Read-Me-BF691f1a59c629e.txt @@ -0,0 +1,3 @@ +ATTENTION!! THIS FONT CAN ONLY BE USED FOR PERSONAL PURPOSES. +NOT FOR COMMERCIAL. IF YOU NEED A COMMERCIAL LICENSE YOU CAN BUY OUR FONT AT +https://www.creativefabrica.com/designer/craftedtype-studio/ \ No newline at end of file diff --git a/To Sort/lazare-grotesk-font-family-1764370398-0/Befonts-License.txt b/To Sort/lazare-grotesk-font-family-1764370398-0/Befonts-License.txt new file mode 100644 index 0000000..cb808de --- /dev/null +++ b/To Sort/lazare-grotesk-font-family-1764370398-0/Befonts-License.txt @@ -0,0 +1,2 @@ +License: Free for Personal Use +Link: https://befonts.com/lazare-grotesk-font-family.html diff --git a/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-Black-BF647806db20415.otf b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-Black-BF647806db20415.otf new file mode 100644 index 0000000..458cbf8 Binary files /dev/null and b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-Black-BF647806db20415.otf differ diff --git a/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-BlackBack-BF647806dbb006f.otf b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-BlackBack-BF647806dbb006f.otf new file mode 100644 index 0000000..d65445b Binary files /dev/null and b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-BlackBack-BF647806dbb006f.otf differ diff --git a/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-BlackItalic-BF647806dbe2cde.otf b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-BlackItalic-BF647806dbe2cde.otf new file mode 100644 index 0000000..4acc2c4 Binary files /dev/null and b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-BlackItalic-BF647806dbe2cde.otf differ diff --git a/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-Bold-BF647806db04a12.otf b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-Bold-BF647806db04a12.otf new file mode 100644 index 0000000..f4121b7 Binary files /dev/null and b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-Bold-BF647806db04a12.otf differ diff --git a/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-BoldBack-BF647806dbbac82.otf b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-BoldBack-BF647806dbbac82.otf new file mode 100644 index 0000000..a60084a Binary files /dev/null and b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-BoldBack-BF647806dbbac82.otf differ diff --git a/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-BoldItalic-BF647806dbbf597.otf b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-BoldItalic-BF647806dbbf597.otf new file mode 100644 index 0000000..18feba8 Binary files /dev/null and b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-BoldItalic-BF647806dbbf597.otf differ diff --git a/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-Light-BF647806db1a1e7.otf b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-Light-BF647806db1a1e7.otf new file mode 100644 index 0000000..58f847a Binary files /dev/null and b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-Light-BF647806db1a1e7.otf differ diff --git a/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-LightBack-BF647806dbc68ff.otf b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-LightBack-BF647806dbc68ff.otf new file mode 100644 index 0000000..75a6cb3 Binary files /dev/null and b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-LightBack-BF647806dbc68ff.otf differ diff --git a/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-LightItalic-BF647806dbc7770.otf b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-LightItalic-BF647806dbc7770.otf new file mode 100644 index 0000000..5c06230 Binary files /dev/null and b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-LightItalic-BF647806dbc7770.otf differ diff --git a/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-Medium-BF647806db24482.otf b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-Medium-BF647806db24482.otf new file mode 100644 index 0000000..17a3fbe Binary files /dev/null and b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-Medium-BF647806db24482.otf differ diff --git a/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-MediumBack-BF647806db9228d.otf b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-MediumBack-BF647806db9228d.otf new file mode 100644 index 0000000..46d0f3d Binary files /dev/null and b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-MediumBack-BF647806db9228d.otf differ diff --git a/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-MediumItalic-BF647806dc09b7e.otf b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-MediumItalic-BF647806dc09b7e.otf new file mode 100644 index 0000000..2226f8b Binary files /dev/null and b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-MediumItalic-BF647806dc09b7e.otf differ diff --git a/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-Regular-BF647806db2b1eb.otf b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-Regular-BF647806db2b1eb.otf new file mode 100644 index 0000000..5632723 Binary files /dev/null and b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-Regular-BF647806db2b1eb.otf differ diff --git a/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-RegularBack-BF647806dba9aa2.otf b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-RegularBack-BF647806dba9aa2.otf new file mode 100644 index 0000000..2adb326 Binary files /dev/null and b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-RegularBack-BF647806dba9aa2.otf differ diff --git a/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-RegularItalic-BF647806dc0245f.otf b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-RegularItalic-BF647806dc0245f.otf new file mode 100644 index 0000000..8e21bcf Binary files /dev/null and b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-RegularItalic-BF647806dc0245f.otf differ diff --git a/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-Thin-BF647806dbadb5b.otf b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-Thin-BF647806dbadb5b.otf new file mode 100644 index 0000000..b4464f0 Binary files /dev/null and b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-Thin-BF647806dbadb5b.otf differ diff --git a/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-ThinBack-BF647806dbcc22e.otf b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-ThinBack-BF647806dbcc22e.otf new file mode 100644 index 0000000..7264503 Binary files /dev/null and b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-ThinBack-BF647806dbcc22e.otf differ diff --git a/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-ThinItalic-BF647806dbe4f58.otf b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-ThinItalic-BF647806dbe4f58.otf new file mode 100644 index 0000000..3223496 Binary files /dev/null and b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-ThinItalic-BF647806dbe4f58.otf differ diff --git a/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-UltraThin-BF647806dbbdb3a.otf b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-UltraThin-BF647806dbbdb3a.otf new file mode 100644 index 0000000..0f4e2a9 Binary files /dev/null and b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-UltraThin-BF647806dbbdb3a.otf differ diff --git a/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-UltraThinBack-BF647806db89f02.otf b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-UltraThinBack-BF647806db89f02.otf new file mode 100644 index 0000000..38607c7 Binary files /dev/null and b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-UltraThinBack-BF647806db89f02.otf differ diff --git a/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-UltraThinItalic-BF647806dbf0c32.otf b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-UltraThinItalic-BF647806dbf0c32.otf new file mode 100644 index 0000000..41466d0 Binary files /dev/null and b/To Sort/lazare-grotesk-font-family-1764370398-0/LazareGroteskTrial-UltraThinItalic-BF647806dbf0c32.otf differ diff --git a/To Sort/neopixel-font-1764372129-0/Befonts-License.txt b/To Sort/neopixel-font-1764372129-0/Befonts-License.txt new file mode 100644 index 0000000..649a90f --- /dev/null +++ b/To Sort/neopixel-font-1764372129-0/Befonts-License.txt @@ -0,0 +1,2 @@ +License: Free for Personal Use +Link: https://befonts.com/neopixel-font.html diff --git a/To Sort/neopixel-font-1764372129-0/neopixel-regular.otf b/To Sort/neopixel-font-1764372129-0/neopixel-regular.otf new file mode 100644 index 0000000..e2c2340 Binary files /dev/null and b/To Sort/neopixel-font-1764372129-0/neopixel-regular.otf differ diff --git a/To Sort/pixel-crash-font-1764372071-0/Befonts-License.txt b/To Sort/pixel-crash-font-1764372071-0/Befonts-License.txt new file mode 100644 index 0000000..dfc7a61 --- /dev/null +++ b/To Sort/pixel-crash-font-1764372071-0/Befonts-License.txt @@ -0,0 +1,2 @@ +License: Free for Personal Use +Link: https://befonts.com/pixel-crash-font.html diff --git a/To Sort/pixel-crash-font-1764372071-0/pixelcrash-trial.otf b/To Sort/pixel-crash-font-1764372071-0/pixelcrash-trial.otf new file mode 100644 index 0000000..42f546c Binary files /dev/null and b/To Sort/pixel-crash-font-1764372071-0/pixelcrash-trial.otf differ diff --git a/To Sort/pixel-crash-font-1764372071-0/read-me-19.txt b/To Sort/pixel-crash-font-1764372071-0/read-me-19.txt new file mode 100644 index 0000000..15ecf78 --- /dev/null +++ b/To Sort/pixel-crash-font-1764372071-0/read-me-19.txt @@ -0,0 +1,15 @@ +By using this font, you agree to the following terms: + +This font is for personal use only. Commercial use is not allowed. +Non-comercial use for large scale audiences is not allowed. + +To purchase a commercial license, visit: +https://ekobimantara.com/ + +For custom licensing inquiries, email us at +ekobimantarafonts@gmail.com + +Explore more fonts in our store: +https://ekobimantara.com/ + +Thank you. \ No newline at end of file diff --git a/To Sort/pixel-gamer-font-1764372239-0/Befonts-License.txt b/To Sort/pixel-gamer-font-1764372239-0/Befonts-License.txt new file mode 100644 index 0000000..21b0fc2 --- /dev/null +++ b/To Sort/pixel-gamer-font-1764372239-0/Befonts-License.txt @@ -0,0 +1,2 @@ +License: Free for Personal Use +Link: https://befonts.com/pixel-gamer-font.html diff --git a/To Sort/pixel-gamer-font-1764372239-0/pixelgamerpersonaluse-rg61l.otf b/To Sort/pixel-gamer-font-1764372239-0/pixelgamerpersonaluse-rg61l.otf new file mode 100644 index 0000000..4dc19e8 Binary files /dev/null and b/To Sort/pixel-gamer-font-1764372239-0/pixelgamerpersonaluse-rg61l.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/Befonts-License.txt b/To Sort/pixel-grid-font-family-1764371982-0/Befonts-License.txt new file mode 100644 index 0000000..bfd9e8e --- /dev/null +++ b/To Sort/pixel-grid-font-family-1764371982-0/Befonts-License.txt @@ -0,0 +1,2 @@ +License: Free for Personal Use +Link: https://befonts.com/pixel-grid-font-family.html diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circleboldm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circleboldm.otf new file mode 100644 index 0000000..07b9a08 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circleboldm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlebolds.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlebolds.otf new file mode 100644 index 0000000..a0faa50 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlebolds.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circleboldxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circleboldxl.otf new file mode 100644 index 0000000..a756b09 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circleboldxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlelim.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlelim.otf new file mode 100644 index 0000000..09bdc9c Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlelim.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlelis.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlelis.otf new file mode 100644 index 0000000..bc21824 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlelis.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlelixl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlelixl.otf new file mode 100644 index 0000000..69fe76e Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlelixl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlemidm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlemidm.otf new file mode 100644 index 0000000..a832f55 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlemidm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlemids.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlemids.otf new file mode 100644 index 0000000..e42ff7a Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlemids.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlenormm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlenormm.otf new file mode 100644 index 0000000..d9c8688 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlenormm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlenorms.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlenorms.otf new file mode 100644 index 0000000..237d79c Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlenorms.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlenormxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlenormxl.otf new file mode 100644 index 0000000..97228c8 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlenormxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circleregm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circleregm.otf new file mode 100644 index 0000000..98f9f82 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circleregm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circleregs.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circleregs.otf new file mode 100644 index 0000000..d422b0d Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circleregs.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circleregxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circleregxl.otf new file mode 100644 index 0000000..75703aa Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circleregxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlethinm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlethinm.otf new file mode 100644 index 0000000..9b00ccc Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlethinm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlethins.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlethins.otf new file mode 100644 index 0000000..ee3d269 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlethins.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlethinxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlethinxl.otf new file mode 100644 index 0000000..37a1b5f Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-circlethinxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionboldm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionboldm.otf new file mode 100644 index 0000000..09b2f49 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionboldm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionbolds.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionbolds.otf new file mode 100644 index 0000000..6781c9a Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionbolds.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionboldxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionboldxl.otf new file mode 100644 index 0000000..88933c1 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionboldxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionlim.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionlim.otf new file mode 100644 index 0000000..0634d8e Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionlim.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionlis.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionlis.otf new file mode 100644 index 0000000..45ef156 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionlis.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionlixl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionlixl.otf new file mode 100644 index 0000000..bc2f41f Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionlixl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionmidm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionmidm.otf new file mode 100644 index 0000000..5056249 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionmidm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionmids.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionmids.otf new file mode 100644 index 0000000..87d9527 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionmids.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionnormm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionnormm.otf new file mode 100644 index 0000000..6fcf7fd Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionnormm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionnorms.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionnorms.otf new file mode 100644 index 0000000..f982b54 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionnorms.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionnormxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionnormxl.otf new file mode 100644 index 0000000..3d7f6bc Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionnormxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionregm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionregm.otf new file mode 100644 index 0000000..ece7f1e Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionregm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionregs.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionregs.otf new file mode 100644 index 0000000..7731e14 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionregs.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionregxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionregxl.otf new file mode 100644 index 0000000..46375f6 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionregxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionregxl.ttf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionregxl.ttf new file mode 100644 index 0000000..4019321 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionregxl.ttf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionthins.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionthins.otf new file mode 100644 index 0000000..aa5bbdf Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionthins.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionthinxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionthinxl.otf new file mode 100644 index 0000000..408416b Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-fashionthinxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartboldm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartboldm.otf new file mode 100644 index 0000000..4ee3845 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartboldm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartbolds.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartbolds.otf new file mode 100644 index 0000000..e71af8d Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartbolds.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartboldxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartboldxl.otf new file mode 100644 index 0000000..b065146 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartboldxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartlim.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartlim.otf new file mode 100644 index 0000000..c929e29 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartlim.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartlis.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartlis.otf new file mode 100644 index 0000000..0a8f1e7 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartlis.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartlixl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartlixl.otf new file mode 100644 index 0000000..7eaaf05 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartlixl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartmidm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartmidm.otf new file mode 100644 index 0000000..05336da Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartmidm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartmids.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartmids.otf new file mode 100644 index 0000000..7bcec34 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartmids.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartnormm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartnormm.otf new file mode 100644 index 0000000..109facf Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartnormm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartnorms.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartnorms.otf new file mode 100644 index 0000000..bab0525 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartnorms.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartnormxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartnormxl.otf new file mode 100644 index 0000000..36d3046 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartnormxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartregm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartregm.otf new file mode 100644 index 0000000..7d5c4e8 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartregm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartregs.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartregs.otf new file mode 100644 index 0000000..6746f98 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartregs.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartregxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartregxl.otf new file mode 100644 index 0000000..a82b69e Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartregxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartthinm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartthinm.otf new file mode 100644 index 0000000..70cc514 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartthinm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartthins.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartthins.otf new file mode 100644 index 0000000..287a20f Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartthins.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartthinxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartthinxl.otf new file mode 100644 index 0000000..a8e3f10 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-heartthinxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownboldm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownboldm.otf new file mode 100644 index 0000000..3eb00f7 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownboldm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownbolds.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownbolds.otf new file mode 100644 index 0000000..954479c Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownbolds.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownboldxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownboldxl.otf new file mode 100644 index 0000000..54c325e Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownboldxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownlim.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownlim.otf new file mode 100644 index 0000000..f495a5a Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownlim.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownlis.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownlis.otf new file mode 100644 index 0000000..7d1b74e Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownlis.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownlixl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownlixl.otf new file mode 100644 index 0000000..3a8529b Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownlixl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownmidm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownmidm.otf new file mode 100644 index 0000000..0a436c3 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownmidm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownmids.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownmids.otf new file mode 100644 index 0000000..0a114eb Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownmids.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownnormm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownnormm.otf new file mode 100644 index 0000000..2dc80cd Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownnormm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownnorms.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownnorms.otf new file mode 100644 index 0000000..d8b7879 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownnorms.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownnormxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownnormxl.otf new file mode 100644 index 0000000..4ff89de Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownnormxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownregm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownregm.otf new file mode 100644 index 0000000..ae03410 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownregm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownregs.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownregs.otf new file mode 100644 index 0000000..a09b76d Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownregs.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownregxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownregxl.otf new file mode 100644 index 0000000..c41206d Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownregxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownthinm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownthinm.otf new file mode 100644 index 0000000..63e3896 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownthinm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownthins.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownthins.otf new file mode 100644 index 0000000..4635c1b Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownthins.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownthinxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownthinxl.otf new file mode 100644 index 0000000..6b061d7 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-linedownthinxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskyboldm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskyboldm.otf new file mode 100644 index 0000000..e26ec02 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskyboldm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskybolds.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskybolds.otf new file mode 100644 index 0000000..80c6187 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskybolds.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskyboldxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskyboldxl.otf new file mode 100644 index 0000000..a22e88a Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskyboldxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskylim.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskylim.otf new file mode 100644 index 0000000..dd96616 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskylim.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskylis.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskylis.otf new file mode 100644 index 0000000..ada26b0 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskylis.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskylixl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskylixl.otf new file mode 100644 index 0000000..e2d0621 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskylixl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskymidm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskymidm.otf new file mode 100644 index 0000000..d268e51 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskymidm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskymids.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskymids.otf new file mode 100644 index 0000000..06caf69 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskymids.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskynormm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskynormm.otf new file mode 100644 index 0000000..c728633 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskynormm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskynorms.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskynorms.otf new file mode 100644 index 0000000..096dc9b Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskynorms.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskynormxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskynormxl.otf new file mode 100644 index 0000000..cfd2824 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskynormxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskyregm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskyregm.otf new file mode 100644 index 0000000..85029c5 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskyregm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskyregs.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskyregs.otf new file mode 100644 index 0000000..1ae3434 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskyregs.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskyregxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskyregxl.otf new file mode 100644 index 0000000..fe2fab2 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskyregxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskythinm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskythinm.otf new file mode 100644 index 0000000..9bb3e8b Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskythinm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskythins.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskythins.otf new file mode 100644 index 0000000..89752a1 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskythins.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskythinxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskythinxl.otf new file mode 100644 index 0000000..13437a9 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-lineskythinxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticboldm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticboldm.otf new file mode 100644 index 0000000..ff33fa1 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticboldm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticbolds.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticbolds.otf new file mode 100644 index 0000000..07ad7af Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticbolds.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticboldxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticboldxl.otf new file mode 100644 index 0000000..13bc02e Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticboldxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticlim.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticlim.otf new file mode 100644 index 0000000..17c2028 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticlim.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticlis.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticlis.otf new file mode 100644 index 0000000..286b89a Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticlis.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticlixl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticlixl.otf new file mode 100644 index 0000000..aed0fe7 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticlixl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticmidm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticmidm.otf new file mode 100644 index 0000000..cc727b5 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticmidm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticmids.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticmids.otf new file mode 100644 index 0000000..93e1257 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticmids.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticnormm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticnormm.otf new file mode 100644 index 0000000..07689a4 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticnormm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticnorms.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticnorms.otf new file mode 100644 index 0000000..7df850e Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticnorms.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticnormxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticnormxl.otf new file mode 100644 index 0000000..f4f5f87 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticnormxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticregm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticregm.otf new file mode 100644 index 0000000..fee78de Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticregm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticregs.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticregs.otf new file mode 100644 index 0000000..423a92d Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticregs.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticregxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticregxl.otf new file mode 100644 index 0000000..7334b45 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticregxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticthinm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticthinm.otf new file mode 100644 index 0000000..2ec56ad Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticthinm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticthins.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticthins.otf new file mode 100644 index 0000000..9d20d07 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticthins.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticthinxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticthinxl.otf new file mode 100644 index 0000000..0dd2825 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-plasticthinxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointboldm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointboldm.otf new file mode 100644 index 0000000..c3047d1 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointboldm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointbolds.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointbolds.otf new file mode 100644 index 0000000..51880c5 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointbolds.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointboldxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointboldxl.otf new file mode 100644 index 0000000..8982a24 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointboldxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointlim.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointlim.otf new file mode 100644 index 0000000..faa7a36 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointlim.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointlis.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointlis.otf new file mode 100644 index 0000000..f35fedb Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointlis.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointlixl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointlixl.otf new file mode 100644 index 0000000..09eb978 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointlixl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointmidm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointmidm.otf new file mode 100644 index 0000000..aef86dd Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointmidm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointmids.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointmids.otf new file mode 100644 index 0000000..01f4e7e Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointmids.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointnormm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointnormm.otf new file mode 100644 index 0000000..fdf9886 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointnormm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointnorms.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointnorms.otf new file mode 100644 index 0000000..19847a8 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointnorms.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointnormxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointnormxl.otf new file mode 100644 index 0000000..04c3fb2 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointnormxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointregm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointregm.otf new file mode 100644 index 0000000..87640dd Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointregm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointregs.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointregs.otf new file mode 100644 index 0000000..a6d46c4 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointregs.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointregxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointregxl.otf new file mode 100644 index 0000000..e1c03c6 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointregxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointthinm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointthinm.otf new file mode 100644 index 0000000..c057040 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointthinm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointthins.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointthins.otf new file mode 100644 index 0000000..c386882 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointthins.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointthinxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointthinxl.otf new file mode 100644 index 0000000..67a6a84 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-pointthinxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickboldm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickboldm.otf new file mode 100644 index 0000000..f80c6a1 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickboldm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickbolds.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickbolds.otf new file mode 100644 index 0000000..4cae762 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickbolds.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickboldxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickboldxl.otf new file mode 100644 index 0000000..1e0af03 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickboldxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quicklim.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quicklim.otf new file mode 100644 index 0000000..fc3b2e1 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quicklim.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quicklis.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quicklis.otf new file mode 100644 index 0000000..c3fdf51 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quicklis.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quicklixl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quicklixl.otf new file mode 100644 index 0000000..d17d28f Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quicklixl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickmidm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickmidm.otf new file mode 100644 index 0000000..4374e0f Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickmidm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickmids.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickmids.otf new file mode 100644 index 0000000..0ae43d1 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickmids.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quicknormm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quicknormm.otf new file mode 100644 index 0000000..d03465c Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quicknormm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quicknorms.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quicknorms.otf new file mode 100644 index 0000000..4cf785f Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quicknorms.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quicknormxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quicknormxl.otf new file mode 100644 index 0000000..6c29afd Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quicknormxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickregm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickregm.otf new file mode 100644 index 0000000..e6f0a10 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickregm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickregs.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickregs.otf new file mode 100644 index 0000000..5cccdbf Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickregs.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickregxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickregxl.otf new file mode 100644 index 0000000..0c4e34a Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickregxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickthinm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickthinm.otf new file mode 100644 index 0000000..7694b12 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickthinm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickthins.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickthins.otf new file mode 100644 index 0000000..74bf414 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickthins.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickthinxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickthinxl.otf new file mode 100644 index 0000000..032e23e Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-quickthinxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowboldm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowboldm.otf new file mode 100644 index 0000000..23b077a Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowboldm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowbolds.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowbolds.otf new file mode 100644 index 0000000..1297d8f Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowbolds.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowboldxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowboldxl.otf new file mode 100644 index 0000000..a7f431b Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowboldxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowlim.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowlim.otf new file mode 100644 index 0000000..dd46335 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowlim.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowlis.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowlis.otf new file mode 100644 index 0000000..8f4684a Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowlis.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowlixl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowlixl.otf new file mode 100644 index 0000000..39aab86 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowlixl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowmidm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowmidm.otf new file mode 100644 index 0000000..37d31b6 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowmidm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowmids.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowmids.otf new file mode 100644 index 0000000..06a4c23 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowmids.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadownormm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadownormm.otf new file mode 100644 index 0000000..dc8d2f9 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadownormm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadownorms.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadownorms.otf new file mode 100644 index 0000000..a53f236 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadownorms.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadownormxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadownormxl.otf new file mode 100644 index 0000000..301a004 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadownormxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowregm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowregm.otf new file mode 100644 index 0000000..32c4dae Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowregm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowregs.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowregs.otf new file mode 100644 index 0000000..fab12b1 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowregs.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowregxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowregxl.otf new file mode 100644 index 0000000..8b703c5 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowregxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowthinm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowthinm.otf new file mode 100644 index 0000000..cc3eae0 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowthinm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowthins.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowthins.otf new file mode 100644 index 0000000..d8d8f4d Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowthins.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowthinxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowthinxl.otf new file mode 100644 index 0000000..ad95e06 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-shadowthinxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squareboldm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squareboldm.otf new file mode 100644 index 0000000..33ec5a9 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squareboldm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squarebolds.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squarebolds.otf new file mode 100644 index 0000000..2ac59d6 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squarebolds.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squareboldxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squareboldxl.otf new file mode 100644 index 0000000..faff4ad Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squareboldxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squaremidm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squaremidm.otf new file mode 100644 index 0000000..8bb3640 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squaremidm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squaremids.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squaremids.otf new file mode 100644 index 0000000..8394b05 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squaremids.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squarenormm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squarenormm.otf new file mode 100644 index 0000000..147b665 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squarenormm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squarenorms.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squarenorms.otf new file mode 100644 index 0000000..e2a272a Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squarenorms.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squarenormxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squarenormxl.otf new file mode 100644 index 0000000..2028e1c Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squarenormxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squareregm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squareregm.otf new file mode 100644 index 0000000..b98e497 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squareregm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squareregs.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squareregs.otf new file mode 100644 index 0000000..bdd29d8 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squareregs.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squareregxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squareregxl.otf new file mode 100644 index 0000000..517b6b2 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squareregxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squarethinm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squarethinm.otf new file mode 100644 index 0000000..c95b85c Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squarethinm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squarethins.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squarethins.otf new file mode 100644 index 0000000..c80b266 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squarethins.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squarethinxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squarethinxl.otf new file mode 100644 index 0000000..031b863 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squarethinxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squrelim.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squrelim.otf new file mode 100644 index 0000000..ab78d20 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squrelim.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squrelis.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squrelis.otf new file mode 100644 index 0000000..53c7ee9 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squrelis.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squrelixl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squrelixl.otf new file mode 100644 index 0000000..087b404 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-squrelixl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterboldm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterboldm.otf new file mode 100644 index 0000000..f65c3f1 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterboldm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterbolds.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterbolds.otf new file mode 100644 index 0000000..a9abf1f Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterbolds.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterboldxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterboldxl.otf new file mode 100644 index 0000000..fca2c52 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterboldxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterlim.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterlim.otf new file mode 100644 index 0000000..15abae6 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterlim.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterlis.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterlis.otf new file mode 100644 index 0000000..b33e8df Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterlis.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterlixl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterlixl.otf new file mode 100644 index 0000000..3a47e88 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterlixl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-watermidm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-watermidm.otf new file mode 100644 index 0000000..c920ffa Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-watermidm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-watermids.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-watermids.otf new file mode 100644 index 0000000..c7da891 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-watermids.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waternormm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waternormm.otf new file mode 100644 index 0000000..7196583 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waternormm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waternorms.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waternorms.otf new file mode 100644 index 0000000..00ce744 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waternorms.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waternormxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waternormxl.otf new file mode 100644 index 0000000..1a8d6be Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waternormxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterregm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterregm.otf new file mode 100644 index 0000000..7e116de Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterregm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterregs.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterregs.otf new file mode 100644 index 0000000..31fc266 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterregs.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterregxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterregxl.otf new file mode 100644 index 0000000..d03dcf5 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterregxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterthinm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterthinm.otf new file mode 100644 index 0000000..9197af0 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterthinm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterthins.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterthins.otf new file mode 100644 index 0000000..3e4fd60 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterthins.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterthinxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterthinxl.otf new file mode 100644 index 0000000..f525106 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-waterthinxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windboldm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windboldm.otf new file mode 100644 index 0000000..cbbcbbe Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windboldm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windbolds.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windbolds.otf new file mode 100644 index 0000000..7a1fbe2 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windbolds.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windboldxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windboldxl.otf new file mode 100644 index 0000000..e418a71 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windboldxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windlim.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windlim.otf new file mode 100644 index 0000000..f48c084 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windlim.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windlis.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windlis.otf new file mode 100644 index 0000000..1c271ba Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windlis.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windlixl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windlixl.otf new file mode 100644 index 0000000..6462c4a Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windlixl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windmidm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windmidm.otf new file mode 100644 index 0000000..82a6ee6 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windmidm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windmids.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windmids.otf new file mode 100644 index 0000000..94b4286 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windmids.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windnormm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windnormm.otf new file mode 100644 index 0000000..f17da01 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windnormm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windnorms.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windnorms.otf new file mode 100644 index 0000000..ee920a1 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windnorms.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windnormxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windnormxl.otf new file mode 100644 index 0000000..fd3959c Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windnormxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windregm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windregm.otf new file mode 100644 index 0000000..3e9b94f Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windregm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windregs.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windregs.otf new file mode 100644 index 0000000..4752311 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windregs.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windregxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windregxl.otf new file mode 100644 index 0000000..03d6d68 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windregxl.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windthinm.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windthinm.otf new file mode 100644 index 0000000..5941f09 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windthinm.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windthins.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windthins.otf new file mode 100644 index 0000000..d51b76a Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windthins.otf differ diff --git a/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windthinxl.otf b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windthinxl.otf new file mode 100644 index 0000000..4d40046 Binary files /dev/null and b/To Sort/pixel-grid-font-family-1764371982-0/pixelgridtrial-windthinxl.otf differ diff --git a/To Sort/pixelon-font-1764372111-0/Befonts-License.txt b/To Sort/pixelon-font-1764372111-0/Befonts-License.txt new file mode 100644 index 0000000..943c438 --- /dev/null +++ b/To Sort/pixelon-font-1764372111-0/Befonts-License.txt @@ -0,0 +1,2 @@ +License: Free for Personal Use +Link: https://befonts.com/pixelon-font.html diff --git a/To Sort/pixelon-font-1764372111-0/Pixelon-BF663182783f6a2.otf b/To Sort/pixelon-font-1764372111-0/Pixelon-BF663182783f6a2.otf new file mode 100644 index 0000000..ea691c7 Binary files /dev/null and b/To Sort/pixelon-font-1764372111-0/Pixelon-BF663182783f6a2.otf differ diff --git a/To Sort/pixelon-font-1764372111-0/Pixelon-BF663182784222c.ttf b/To Sort/pixelon-font-1764372111-0/Pixelon-BF663182784222c.ttf new file mode 100644 index 0000000..acb3c81 Binary files /dev/null and b/To Sort/pixelon-font-1764372111-0/Pixelon-BF663182784222c.ttf differ diff --git a/To Sort/qraydom-font-1764371345-0/Befonts-License.txt b/To Sort/qraydom-font-1764371345-0/Befonts-License.txt new file mode 100644 index 0000000..bebe301 --- /dev/null +++ b/To Sort/qraydom-font-1764371345-0/Befonts-License.txt @@ -0,0 +1,2 @@ +License: Free for Personal Use +Link: https://befonts.com/qraydom-font.html diff --git a/To Sort/qraydom-font-1764371345-0/Qraydom.ttf b/To Sort/qraydom-font-1764371345-0/Qraydom.ttf new file mode 100644 index 0000000..8010b27 Binary files /dev/null and b/To Sort/qraydom-font-1764371345-0/Qraydom.ttf differ diff --git a/To Sort/space-rabbit-font-1764372251-0/Befonts-License.txt b/To Sort/space-rabbit-font-1764372251-0/Befonts-License.txt new file mode 100644 index 0000000..39c2815 --- /dev/null +++ b/To Sort/space-rabbit-font-1764372251-0/Befonts-License.txt @@ -0,0 +1,2 @@ +License: Free for Commercial Use +Link: https://befonts.com/space-rabbit-font.html diff --git a/To Sort/space-rabbit-font-1764372251-0/Space-Rabbit.otf b/To Sort/space-rabbit-font-1764372251-0/Space-Rabbit.otf new file mode 100644 index 0000000..aec128b Binary files /dev/null and b/To Sort/space-rabbit-font-1764372251-0/Space-Rabbit.otf differ