aboutsummaryrefslogtreecommitdiff
path: root/resume
diff options
context:
space:
mode:
Diffstat (limited to 'resume')
-rw-r--r--resume/README.md95
-rw-r--r--resume/output.pdfbin448936 -> 0 bytes
-rw-r--r--resume/screenshots/preview.pngbin162723 -> 0 bytes
-rw-r--r--resume/screenshots/sample-card-sub-title.pngbin5575 -> 0 bytes
-rw-r--r--resume/screenshots/sample-card.pngbin3650 -> 0 bytes
-rw-r--r--resume/screenshots/sample-ratings.pngbin4752 -> 0 bytes
-rw-r--r--resume/screenshots/sample-stacked-info.pngbin3517 -> 0 bytes
-rw-r--r--resume/src/resume.html191
-rw-r--r--resume/src/sample-profile-picture.jpegbin398276 -> 0 bytes
-rw-r--r--resume/src/style.css204
10 files changed, 0 insertions, 490 deletions
diff --git a/resume/README.md b/resume/README.md
deleted file mode 100644
index 602f813..0000000
--- a/resume/README.md
+++ /dev/null
@@ -1,95 +0,0 @@
-This is a small template for making resumes. Edit the HTML and CSS with your values and then print it to a PDF file **(WITH AN A4 SIZE OF PAPER)**. What you see should be the same as what you get after printing (open an issue if you've found a discrpetancy!).
-
-![](./screenshots/preview.png)
-*The sample profile picture is taken from [thispersondoesnotexist.com](https://thispersondoesnotexist.com/)*
-
-# CSS classes
-
-In the following sections you'll get explanations and examples about the main styling classes.
-
-## stacked-info
-
-It's used for the content, beside your profile picture. It just shows text with a line to left. You can add a bold title by wraping the title text in `<b>` and then adding a line break (`<br>`). It's usually inside an `info` class.
-
-Sample usage:
-```html
-<div class="stacked-info">
- <b>Date of birth</b><br>
- 01.01.1992
-</div>
-```
-![](./screenshots/sample-stacked-info.png)
-
-## card
-
-Cards are the main type of element. Each card is as wide as it can be and it contains it's title to the left, which is bold, and it's content to the right.
-
-Sample usage:
-```html
-<div class="card">
- <div class="card-title">
- About Me
- </div>
- <div class="card-content">
- I'm a person
- </div>
-</div>
-```
-![](./screenshots/sample-card.png)
-
-### card-sub-title
-
-You can also add a special title inside the content part of a card. It will be bold and have a line to the left of it (similar to [stacked-info](#stacked-info)). The actual contents should be below it.
-
-Sample usage:
-```html
-<div class="card">
- <div class="card-title">
- About Me
- </div>
- <div class="card-content">
- <div class="card-sub-title">
- I'm a person
- </div>
- Yep, it's true.
- </div>
-</div>
-```
-![](./screenshots/sample-card-sub-title.png)
-
-## ratings
-
-Only tables **must** have the `ratings` class. It's a special type of table, where you're meant to add a title and then add some sort of text that indicates how good you are at it. Every two columns are separated by a border. All columns have the same width.
-
-Sample usage:
-```html
-<table class="ratings">
- <tr>
- <td>C#</td>
- <td>●●●●●</td>
- <td>F#</td>
- <td>●○○○○</td>
- </tr>
- <tr>
- <td>C++</td>
- <td>●●●○○</td>
- <td>C</td>
- <td>●●●●○</td>
- </tr>
-</table>
-```
-![](./screenshots/sample-ratings.png)
-
-**Note:** obviously, you can use whatever text you want for the rating values, I just like the circles
-
-# Special styling
-
-Some stuff have some caveats to how and when they are styled.
-
-## hr
-
-The `<hr>` element is usually styled as a gray line, but when it's directly inside the content class (meaning when it's between main sectons), it's styled as a color, close to black.
-
-## page
-
-The `page` class, in which each page is stored, centers it in the screen, but while printing there is a specific margin.
diff --git a/resume/output.pdf b/resume/output.pdf
deleted file mode 100644
index a349bb7..0000000
--- a/resume/output.pdf
+++ /dev/null
Binary files differ
diff --git a/resume/screenshots/preview.png b/resume/screenshots/preview.png
deleted file mode 100644
index 5a0f446..0000000
--- a/resume/screenshots/preview.png
+++ /dev/null
Binary files differ
diff --git a/resume/screenshots/sample-card-sub-title.png b/resume/screenshots/sample-card-sub-title.png
deleted file mode 100644
index 4f005c2..0000000
--- a/resume/screenshots/sample-card-sub-title.png
+++ /dev/null
Binary files differ
diff --git a/resume/screenshots/sample-card.png b/resume/screenshots/sample-card.png
deleted file mode 100644
index d37486b..0000000
--- a/resume/screenshots/sample-card.png
+++ /dev/null
Binary files differ
diff --git a/resume/screenshots/sample-ratings.png b/resume/screenshots/sample-ratings.png
deleted file mode 100644
index 56a8833..0000000
--- a/resume/screenshots/sample-ratings.png
+++ /dev/null
Binary files differ
diff --git a/resume/screenshots/sample-stacked-info.png b/resume/screenshots/sample-stacked-info.png
deleted file mode 100644
index 644b93e..0000000
--- a/resume/screenshots/sample-stacked-info.png
+++ /dev/null
Binary files differ
diff --git a/resume/src/resume.html b/resume/src/resume.html
deleted file mode 100644
index 77aa441..0000000
--- a/resume/src/resume.html
+++ /dev/null
@@ -1,191 +0,0 @@
-<!DOCTYPE html>
-<html>
-
-<head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="stylesheet" href="./style.css">
- <title>Resume - Gosho Petrov</title>
-</head>
-
-<body>
- <main class="page">
- <article class="content">
- <summary id="about">
- <div id="data">
- <div id="name">
- Gosho Petrov
- </div>
- <div id="text-data">
- <div class="info">
- <div class="stacked-info">
- <b>Date of birth</b><br>
- 6.9.420
- </div>
- <div class="stacked-info">
- <b>Address</b><br>
- Gosho Street
- </div>
- <div class="stacked-info">
- <b>Phone Number</b><br>
- 1-800-Gosho
- </div>
- </div>
- <div class="info">
- <div class="stacked-info">
- <b>Email</b><br>
- gosho@ne-me-vijdash.pich
- </div>
- <div class="stacked-info">
- <b>GitHub account</b><br>
- github.com/adfadfadfasdga
- </div>
- <div class="stacked-info">
- <b>LinkedIn profile</b><br>
- linkedin.com/in/asdagadggw
- </div>
- </div>
- </div>
- </div>
- <img id="picture-data" src="./sample-profile-picture.jpeg">
- </div>
- </summary>
- <hr>
- <section class="info-section">
- <div class="card">
- <div class="card-title section-title">
- ║ PROFILE ║
- </div>
- <div class="card-content">
- Vikat mi ela za malko, I POCHVAM DA BEGAM BATE
- </div>
- </div>
- </section>
- <hr>
- <section class="info-section">
- <div class="section-title">
- ║ EDUCATION ║
- </div>
- <div class="card">
- <div class="card-title">
- 1990 - 1994
- </div>
- <div class="card-content">
- <div class="card-sub-title">
- Joe University
- </div>
- Mi, nema kvo da kaja
- </div>
- </div>
- <div class="card">
- <div class="card-title">
- 1994 - 2004
- </div>
- <div class="card-content">
- <div class="card-sub-title">
- Cool University
- </div>
- Yep, it's true. What are you gonna do about it?
- </div>
- </div>
- <div class="card end-card">
- <div class="card-title">
- 1994 - 2004
- </div>
- <div class="card-content">
- <div class="card-sub-title">
- The coolest university
- </div>
- I'll have you know, I gratuated top of my class.
- </div>
- </div>
- <hr>
- <div class="section-title">
- ║ EXPERIENCE ║
- </div>
- <div class="card">
- <div class="card-title">
- 1990 - now
- </div>
- <div class="card-content">
- <div class="card-sub-title">
- Megamind Inc.
- </div>
- Bachkam, kvo da kaja
- </div>
- </div>
- <div class="card">
- <div class="card-title">
- 1890 - 1990
- </div>
- <div class="card-content">
- <div class="card-sub-title">
- Intergalatical Time Federation
- </div>
- Learned how to control time.
- </div>
- </div>
-
- </section>
- <hr>
- <section class="info-section">
- <div class="section-title">
- ║ PROJECTS ║
- </div>
- <div class="card">
- <div class="card-title">
- 1990 - now
- </div>
- <div class="card-content">
- <div class="card-sub-title">
- Yo mama
- </div>
- HA, goteem
- </div>
- </div>
- <div class="card">
- <div class="card-title">
- 1989 - 1999
- </div>
- <div class="card-content">
- <div class="card-sub-title">
- Crime
- </div>
- </div>
- </div>
- <hr>
- <div class="card">
- <div class="card-title section-title">
- ║ SKILLS ║
- </div>
- <div class="card-content">
- <table class="ratings">
- <tr>
- <td>Dumb Shit</td>
- <td>●●●●●</td>
- <td>Other Shit</td>
- <td>●●●○○</td>
- </tr>
- <tr>
- <td>Making normal static content</td>
- <td>○○○○○</td>
- <td>Writing</td>
- <td>○○○○○</td>
- </tr>
- </table>
- <br>
- <table class="ratings">
- <tr>
- <td>Programming</td>
- <td>●●●●●</td>
- <td>Programming</td>
- <td>●○○○○</td>
- </tr>
- </table>
- </div>
- </section>
- </article>
- </main>
-</body>
-
-</html>
diff --git a/resume/src/sample-profile-picture.jpeg b/resume/src/sample-profile-picture.jpeg
deleted file mode 100644
index 531c03b..0000000
--- a/resume/src/sample-profile-picture.jpeg
+++ /dev/null
Binary files differ
diff --git a/resume/src/style.css b/resume/src/style.css
deleted file mode 100644
index fb4927b..0000000
--- a/resume/src/style.css
+++ /dev/null
@@ -1,204 +0,0 @@
-:root {
- --font-color: #444;
- --padding: .25in;
- --picture-size: 10em;
- --page-margin: 5mm;
-}
-
-* {
- font-size: 19px;
- font-family: sans-serif;
-}
-
-hr {
- width: auto;
- border: 1px solid rgb(210, 210, 210);
- margin: .9em 0;
-}
-
-body {
- width: 100%;
- height: 100%;
- margin: 0;
- background-color: white;
-}
-
-/* The whole page */
-
-.page {
- width: 210mm;
- height: 297mm;
- margin: 0 auto;
-}
-
-.content {
- width: calc(100% - 2 * var(--page-margin));
- height: calc(100% - 2 * var(--page-margin));
- border: 3px solid var(--font-color);
- box-sizing: border-box;
- padding: var(--padding);
- margin: var(--page-margin);
- display: flex;
- flex-direction: column;
-}
-
-.content > * {
- width: 100%;
-}
-
-.content > hr {
- border-color: var(--font-color);
-}
-
-/* About/Summary */
-
-#about {
- display: flex;
- width: 100%;
- height: fit-content;
- position: relative;
-}
-
-#data {
- flex: 1;
- height: var(--picture-size);
- display: flex;
- flex-direction: column;
-}
-
-#name {
- font-size: 2.5em;
- font-weight: bold;
- margin-bottom: .2em;
-}
-
-#text-data {
- font-size: .7em;
- flex: 1;
- display: flex;
-}
-
-.info {
- flex: 1;
- font-size: inherit;
- display: flex;
- flex-direction: column;
-}
-
-.info > * {
- flex: 1;
-}
-
-.stacked-info {
- font-size: inherit;
- line-height: 1.3em;
- margin-top: .8em;
- border-left: 1px solid var(--font-color);
- box-sizing: border-box;
- padding: 0 1em;
-}
-
-.stacked-info:first-child {
- margin-top: 0;
-}
-
-.stacked-info > b {
- font-size: inherit;
-}
-
-#picture-data {
- height: var(--picture-size);
- width: var(--picture-size);
-}
-
-#picture-data > img {
- width: var(--picture-size);
- margin: auto 0;
-}
-
-/* Sections */
-
-.section-title {
- font-weight: bold;
- margin-bottom: .5em;
-}
-
-/* Card */
-
-.card {
- width: 100%;
- display: flex;
- margin-bottom: 1em;
-}
-
-.card-title {
- width: 20%;
- font-weight: bold;
-}
-
-.card-content {
- flex: 1;
- display: flex;
- flex-direction: column;
-}
-
-.card-content > .card {
- margin-top: 1em;
-}
-
-.card-content > .card > .card-title {
- width: 24%;
-}
-
-.card-content > .card:first-child {
- margin-top: 0;
-}
-
-.card-sub-title {
- border-left: 2px solid var(--font-color);
- padding-left: .5em;
- font-weight: bold;
- margin-bottom: .3em;
-}
-
-.end-card, .card:last-child {
- margin-bottom: 0;
-}
-
-/* Rating */
-
-.ratings {
- width: 100%;
- border: none;
- table-layout: fixed;
- border-collapse: colapse;
- border-spacing: 0;
-}
-
-.ratings td {
- padding: 2px 0;
- text-align: center;
- vertical-align: middle;
-}
-
-.ratings td:nth-child(2n) {
- border-right: 1px solid black;
-}
-
-.ratings td:last-child {
- border-right-width: 0;
-}
-
-/* Proper printing */
-
-@page {
- size: A4;
- margin: 5mm;
-}
-@media print {
- html, body, .page, .content {
- width: 100%;
- height: 100%;
- margin: 0;
- }
-}