palerdot / universal-resume

Minimal and formal résumé (CV) website template for print, mobile, and desktop. https://bit.ly/2kEzgt8

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Universal Résumé Template

Minimal and formal résumé (CV) website template for print, mobile, and desktop. The proportions are the same on the screen and paper. Built with amazing Tailwind CSS.

Letter Size Demo: https://universal-resume.netlify.com/
A4 Size Demo: https://universal-resume-a4.netlify.com/
Multiple Pages Demo: https://universal-resume-pages.netlify.com/
Mobile Demo: https://www.responsinator.com/?url=https%3A%2F%2Funiversal-resume-pages.netlify.com%2F

Note: Licensed under CC NC-SA 1.0. In short, your may use it for your résumé, but not for commercial purposes.

How to print or save it as PDF?
Right-click → Print.

Does it support A4 and Letter paper sizes?
Yes, replace all -letter classes with -a4, and uncomment specified code blocks.

What font does it use?
Per Butterick’s free fonts recommendations, I’ve chosen IBM Plex.

Why it’s made?
I couldn’t find any formal or professional résumé (CV) website with good typography, that is optimized for print, pdf, and mobile. Also, researching what recruiters want, my priorities were fast scanning time and all content to fit on one page.

How to run it

Navigate to the base directory:

cd universal-resume

Install the dependencies:

npm install

Start the development server:

npm run serve

For the CSS optimizations, run this:

npm run public

Starting Point

public/index.html is the location where the content is inserted. By copy-pasting HTML — add pages, sections, articles, or other types.

npm run public will make public directory ready for drag-n-drop to, for example, https://app.netlify.com/drop (registration required beforehand).

Tailwind CSS

Tailwind CSS is a highly customizable, low-level CSS framework that gives you all of the building blocks you need to build bespoke designs without any annoying opinionated styles you have to fight to override. It has great documentation.

You rarely need to do anything outside the index.html. Use together a bunch of pre-made utility classes that reflect a certain design system. There’s no cascade or selector specificity. This results in faster, and much more pleasurable workflow, especially long-term.

Custom CSS

Code from tailwind.config.js and tailwind.css compiles to public/style.css. Default tailwind CSS is overwritten or extended with tailwind.config.js.

Here is the default tailwind config: defaultConfig.stub.js, and here’s the additional information from the tailwind documentation: theme.

Need to change CSS in the old way — add a class to the HTML element and write CSS inside the tailwind.css file. You don’t need to follow the tailwindcss way.

Columns

Beneath <!-- Column -->, removing col-fill class will make both columns equally tall.

A4 Size Variant

Important: Page will break in the form of additional columns if there is too much content for one page.

Change the default size (letter) to A4:

1. Inside public/index.html, replace every -letter with -a4.

2. Inside tailwind.config.js, uncomment code block below /* For A4 size */, then comment code block below `/* For Letter size */

3. Inside tailwind.css, uncomment code below /* For A4 size */, then comment code below /* For Letter size */

Printing

Chrome

Right-click → Print.
Also, choose the Save as PDF option if needed.

By expanding More Settings, change Page Size to A4 or Letter.

Firefox

File → Print.

Choose A4 or Letter size by navigating to Properties → Advanced → Paper Size.

Adobe Acrobat Reader

File → Print.

By clicking on the Page Setup button, you are taken to the window to choose A4 or Letter size.

Blocking Search Engines

Disable search engine indexing by adding the following code to the document <head>:

<meta name="robots" content="noindex">

Contact Me / Hire Me

If you have any question, comment, or issue, please don’t hesitate to contact me at:

Also, you can hire me for $20/h to do quality work. The transaction could be made after the first day; then, every two days, every week, and finally every two weeks. We can make a contract later or at the beginning. I’m open to other options too. My specialties are Tailwind CSS, React JS, Gatsby JS, and Gutenberg Editor.

Always happy to hear from you!

License

NonCommercial-ShareAlike 1.0 Generic (CC NC-SA 1.0)
https://creativecommons.org/licenses/nc-sa/1.0/

You are free to:

Share — copy and redistribute the material in any medium or format

Adapt — remix, transform, and build upon the material

Under the following terms:

NonCommercial — You may not use the material for commercial purposes.

ShareAlike — If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original.

Changelog

https://www.notion.so/Changelog-for-Universal-Resume-0b7623d156994e7a95fe2fce5c6e7b99

About

Minimal and formal résumé (CV) website template for print, mobile, and desktop. https://bit.ly/2kEzgt8

License:Other


Languages

Language:HTML 94.1%Language:JavaScript 3.1%Language:CSS 2.8%