Compare commits

...

2 Commits

Author SHA1 Message Date
c9c1b4f206 update file for pre-release v0.0.4 2020-12-11 23:32:09 +01:00
Mandar
1b5d4d638d Update Font + nav and tolltip adjustement
Delete unused and add ttf for Brushtip and ManoNegra
2020-12-11 23:20:33 +01:00
9 changed files with 22 additions and 6 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
system/fonts/ManoNegra.ttf Normal file

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@@ -9,17 +9,24 @@
// Font BrushtipTexe // Font BrushtipTexe
@font-face { @font-face {
font-family: "BrushtipTexe"; font-family: "BrushtipTexe";
src: url("../fonts/BrushtipTexe.otf") format("opentype"); src: url("../fonts/BrushtipTexe.ttf") format("truetype");
} }
// Font ArchitectsDaughter // Font PatrickHand
@font-face { @font-face {
font-family: "PatrickHand"; font-family: "PatrickHand";
src: url("../fonts/PatrickHand.ttf") format("truetype"); src: url("../fonts/PatrickHand.ttf") format("truetype");
} }
// Font ManoNegra
@font-face {
font-family: "ManoNegra";
src: url("../fonts/ManoNegra.ttf") format("truetype");
}
$font-primary: "PatrickHand", sans-serif; $font-primary: "PatrickHand", sans-serif;
$font-secondary: "BrushtipTexe", sans-serif; $font-secondary: "BrushtipTexe", sans-serif;
$font-tertiary: "ManoNegra", sans-serif;
$font-dice: "LogotypeL5r", sans-serif; $font-dice: "LogotypeL5r", sans-serif;
body { body {

View File

@@ -2,6 +2,7 @@
nav { nav {
&.sheet-tabs { &.sheet-tabs {
font-family: $font-tertiary;
border: 0 none; border: 0 none;
margin-bottom: 0; margin-bottom: 0;
background: $l5r5e-white; background: $l5r5e-white;

View File

@@ -132,9 +132,17 @@
} }
} }
li { li {
position: relative;
p { p {
display: none; display: none;
z-index: 2;
position: absolute; position: absolute;
bottom: -100%;
background: rgba(0,0,0,0.5);
color: #fff;
padding: 0.25rem;
--notchSize: 0.5rem;
clip-path: polygon(0% 0, 0 0%, 100% 0%, 100% var(--notchSize), 100% calc(100% - var(--notchSize)), calc(100% - var(--notchSize)) 100%, var(--notchSize) 100%, 0% calc(100% - var(--notchSize)));
} }
&:hover { &:hover {
p { p {

View File

@@ -2,8 +2,8 @@
"name": "l5r5e", "name": "l5r5e",
"title": "Legend of the Five Rings (5th Edition)", "title": "Legend of the Five Rings (5th Edition)",
"description": "This is a game system, multilanguage in En/FR/ES, for Legend of the Five Rings (5th Edition) by <a href='https://edge-studio.net/'>Edge Studio</a> <p> - Join the official Discord server: <a href='https://discord.gg/foundryvtt'> Official Discord</a></p><p> - Rejoignez la communauté Francophone: <a href='https://discord.gg/pPSDNJk'>Francophone Discord</a></p>", "description": "This is a game system, multilanguage in En/FR/ES, for Legend of the Five Rings (5th Edition) by <a href='https://edge-studio.net/'>Edge Studio</a> <p> - Join the official Discord server: <a href='https://discord.gg/foundryvtt'> Official Discord</a></p><p> - Rejoignez la communauté Francophone: <a href='https://discord.gg/pPSDNJk'>Francophone Discord</a></p>",
"version": "0.0.3", "version": "0.0.4",
"minimumCoreVersion": "0.7.3", "minimumCoreVersion": "0.7.5",
"compatibleCoreVersion": "0.7.8", "compatibleCoreVersion": "0.7.8",
"author": "Team L5R", "author": "Team L5R",
"background": "L5R-Header.webp", "background": "L5R-Header.webp",
@@ -42,5 +42,5 @@
], ],
"url": "https://gitlab.com/teaml5r/l5r5e", "url": "https://gitlab.com/teaml5r/l5r5e",
"manifest": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/system/system.json", "manifest": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/system/system.json",
"download": "https://gitlab.com/teaml5r/l5r5e/-/jobs/artifacts/v0.0.3/raw/l5r5e.zip?job=build" "download": "https://gitlab.com/teaml5r/l5r5e/-/jobs/artifacts/v0.0.4/raw/l5r5e.zip?job=build"
} }