Skip to content

Commit

Permalink
fix element borders in dark/cyberpunk themes and use the Checkbook fo…
Browse files Browse the repository at this point in the history
…nt for now in the the cyberpunk theme
  • Loading branch information
M4GNV5 committed Jan 9, 2021
1 parent b921a3f commit 3f70fdc
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 6 deletions.
Binary file added rogue-thi-app/public/Checkbook-1K2.ttf
Binary file not shown.
24 changes: 18 additions & 6 deletions rogue-thi-app/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ body {
}



/*
* DARK THEME
*/
Expand All @@ -29,6 +30,11 @@ body {
.dark * {
background-color: #121212 !important;
color: white !important;
}
.dark .card,
.dark .modal-content,
.dark .list-group-item,
.dark .list-group-item-action {
border-color: white !important;
}

Expand All @@ -37,6 +43,10 @@ body {
/*
* CYBERPUNK THEME
*/
@font-face {
font-family: cyberpunk;
src: url(/Checkbook-1K2.ttf);
}
/* TODO: can we bundle this font? or might we run into legal issues?
@font-face {
font-family: cyberpunk;
Expand All @@ -48,13 +58,15 @@ body {
.cyberpunk * {
background-color: #121212 !important;
color: white !important;
border-color: #F3F315 !important;
}
.cyberpunk :is(h1, h2, h3, h4, h5, h6) {
color: #F3F315 !important;
/*font-family: cyberpunk;*/
.cyberpunk .card,
.cyberpunk .modal-content,
.cyberpunk .list-group-item,
.cyberpunk .list-group-item-action {
border-color: #F3F315 !important;
}
.cyberpunk :is(strong, h1, h2, h3, h4, h5, h6),
.cyberpunk .card-title {
color: #F3F315 !important;
/*font-family: cyberpunk;*/
}
font-family: cyberpunk;
}

0 comments on commit 3f70fdc

Please sign in to comment.