-
Notifications
You must be signed in to change notification settings - Fork 0
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
10 changed files
with
562 additions
and
73 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,6 +1,6 @@ | ||
{ | ||
"name": "jsonresume-theme-legacy", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "✱ Legacy handlebars jsonresume theme port to vite", | ||
"author": "metaory <[email protected]>", | ||
"bugs": "https://github.com/metaory/jsonresume-theme-legacy/issues", | ||
|
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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,9 +1,7 @@ | ||
/* @import "https://cdn.jsdelivr.net/npm/[email protected]/simple.min.css"; */ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
||
|
||
:root { | ||
--cww: #FFF; | ||
--cbb: #000; | ||
|
@@ -165,13 +163,23 @@ | |
font-family: RN-I; | ||
src: url("/src/assets/fonts/MonaspaceRadon-MediumItalic.woff") format('woff'); | ||
} | ||
/* background-image: url("/src/assets/bg.png"); */ | ||
img { | ||
opacity: 1; | ||
} | ||
|
||
html { | ||
background: white; | ||
} | ||
body { | ||
display: grid; | ||
justify-content: center; | ||
background-image: url("/src/assets/bg.png"); | ||
background-position: 75%; | ||
background-size: cover; | ||
background-repeat: repeat-y; | ||
} | ||
main { | ||
padding: 4em; | ||
width: 210mm; | ||
max-width: 210mm; | ||
background-color: var(--xgg); | ||
} | ||
|
||
div.line-pattern { | ||
|
@@ -246,8 +254,7 @@ section { | |
} | ||
|
||
@page { | ||
size: 210mm 297mm; | ||
size: A4; | ||
margin: 0; | ||
} | ||
|
||
/* html { filter: invert(1); } */ |