Update Font + nav and tolltip adjustement

Delete unused and add ttf for Brushtip and ManoNegra
This commit is contained in:
Mandar
2020-12-11 23:20:33 +01:00
parent 03f8cd8dd1
commit 1b5d4d638d
8 changed files with 19 additions and 3 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 {