mirror of
https://github.com/romancm/gamebrary
synced 2024-11-27 21:50:24 +00:00
Added pseudo-stroke to header text
This commit is contained in:
parent
0f60a4d367
commit
68ef0e0fcb
2 changed files with 9 additions and 2 deletions
|
@ -7,7 +7,7 @@
|
|||
>
|
||||
<img src="/static/gamebrary-logo.png" >
|
||||
|
||||
{{ title }}
|
||||
<span>{{ title }}</span>
|
||||
</router-link>
|
||||
|
||||
<settings v-if="showSettings" />
|
||||
|
@ -79,6 +79,13 @@ export default {
|
|||
margin-left: -$gp;
|
||||
text-transform: capitalize;
|
||||
|
||||
> span {
|
||||
text-shadow: -1px -1px 0 var(--body-background),
|
||||
1px -1px 0 var(--body-background),
|
||||
-1px 1px 0 var(--body-background),
|
||||
1px 1px 0 var(--body-background);
|
||||
}
|
||||
|
||||
img {
|
||||
height: 24px;
|
||||
margin-right: $gp / 4;
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
--danger-text-color: #{darken(#ea550b, 30%)};
|
||||
--game-card-background: #{lighten(#714a2f, 5%)};
|
||||
--game-card-text-color: #{lighten(#714a2f, 50%)};
|
||||
--header-text-color: #{darken(#287135, 15%)};
|
||||
--header-text-color: #{lighten(#0e5135, 50%)};
|
||||
--accent-color: #ffda00;
|
||||
--list-background: #{darken(#714a2f, 5%)};
|
||||
--list-header-background: #{darken(#714a2f, 10%)};
|
||||
|
|
Loading…
Reference in a new issue