-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
63 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
name: build | ||
name: Build and Test | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
name: Run Specifications | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
- uses: actions/checkout@v4 #see: https://github.com/actions/checkout/releases | ||
- uses: actions/setup-node@v4 #see: https://github.com/actions/setup-node/releases | ||
- run: npm install | ||
- run: npm test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/////////////////////////////////////////////////////////////// | ||
// Paradise ~ centerkey.com/paradise // | ||
// GPLv3 ~ Copyright (c) Individual contributors to Paradise // | ||
/////////////////////////////////////////////////////////////// | ||
|
||
// Constants and utilities -- Reusable values and mixins | ||
|
||
// Layers for z-index | ||
@layerDialogBox: 500; //cream of the crop | ||
@layerModal: 400; //screen overlays | ||
@layerFixedPosition: 300; //sticky elements | ||
@layerNavigation: 200; //notifications, menus, and drop-downs | ||
@layerHover: 100; //tootips and other hover popups | ||
@layerBackground: -100; //bottom of the barrel | ||
|
||
// Character entities | ||
@symbolAngleRight: "\276F"; //character: ❯ | ||
@symbolArrowDown: "\21E9"; //character: ⇩ | ||
@symbolArrowUp: "\21E7"; //character: ⇧ | ||
@symbolBallotXMark: "\2718"; //character: ✘ | ||
@symbolCheckmark: "\2714"; //character: ✔ | ||
@symbolEmDash: "\2014"; //character: — | ||
@symbolTriangleDown: "\25BC"; //character: ▼ | ||
@symbolTriangleUp: "\25B2"; //character: ▲ | ||
|
||
// Tools | ||
|
||
.Bullseye() { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.MobileMode(@lessRules) { //selects iPhone 6/6s/7/8/SE2/SE3 landscape and anything narrower | ||
@media (max-width: 667px) { @lessRules(); } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters