Update CSS & README
This commit is contained in:
parent
a67e0f4bc9
commit
c140d401bb
7 changed files with 66 additions and 65 deletions
15
README.md
15
README.md
|
@ -1,9 +1,3 @@
|
||||||
# !! Breaking Changes !!
|
|
||||||
|
|
||||||
Thanks to [@raphendyr](https://gitlab.com/raphendyr), we can now add more than one page and change order of the sections. Also, there are tons of refactoring which made the theme more modular.
|
|
||||||
|
|
||||||
**If you are already using a previous version of the theme, you will get an ERROR** after this update. Don't worry. The solution is very easy. You just need to edit ```projects.yaml```, ```features.yaml``` and ```config.yaml``` since their structure has changed. After that, all should be fine.
|
|
||||||
|
|
||||||
# Features
|
# Features
|
||||||
|
|
||||||
* Simple, easy to use, single or multi page, A4-sized Resume generator.
|
* Simple, easy to use, single or multi page, A4-sized Resume generator.
|
||||||
|
@ -51,11 +45,18 @@ git submodule add https://gitlab.com/mertbakir/resume-a4.git themes/resume-a4
|
||||||
Copy the ```\assets``` folder under the ```exampleSite``` directory if you like to make simple modifications.
|
Copy the ```\assets``` folder under the ```exampleSite``` directory if you like to make simple modifications.
|
||||||
### Avatar
|
### Avatar
|
||||||
|
|
||||||
Set avatar link in `config.yaml`, you may keep the image under `static` folder.
|
Set avatar link in `config.yaml`, you may keep the image under `static` folder. You can set it as ```false``` if you don't want to add a picture.
|
||||||
|
|
||||||
### Publications
|
### Publications
|
||||||
|
|
||||||
You can change `style` of the `publications` feature in the config file. There are options for APA and IEEE standards. Report me on gitlab or send a merge requests if standarts are erroneous. I'm no expert on citation standarts.
|
You can change `style` of the `publications` feature in the config file. There are options for APA and IEEE standards. Report me on gitlab or send a merge requests if standarts are erroneous. I'm no expert on citation standarts.
|
||||||
|
|
||||||
|
## Print | Save As PDF
|
||||||
|
|
||||||
|
There is a snippet in the ```exampleSite\assets\custom.scss``` file for printing the href attribute. It's not included as default. Because "save as pdf" is way more common usage than a hard copy. Also, I wouldn't prefer printing a long url on a hard copy.
|
||||||
|
|
||||||
|
If you don't like the result of "save as pdf" in Mozilla Firefox, try Chrome or a Chromium-based browser. Probably, because Firefox doesn't support [this](https://developer.mozilla.org/en-US/docs/Web/CSS/%40page/size).
|
||||||
|
|
||||||
# License
|
# License
|
||||||
|
|
||||||
This project is open-sourced and licensed under the terms of the MIT license. I would be happy though, if you give attribution. <3
|
This project is open-sourced and licensed under the terms of the MIT license. I would be happy though, if you give attribution. <3
|
||||||
|
|
|
@ -66,6 +66,7 @@ main.paper {
|
||||||
header {
|
header {
|
||||||
grid-area: 1 / 1 / 2 / 8;
|
grid-area: 1 / 1 / 2 / 8;
|
||||||
border-bottom: $border-color 0.05rem solid;
|
border-bottom: $border-color 0.05rem solid;
|
||||||
|
height: 12.75rem;
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
@ -25,30 +25,6 @@
|
||||||
|
|
||||||
a {
|
a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
||||||
&:not(.non-existing)::after {
|
|
||||||
content: " (" attr(href) ")";
|
|
||||||
margin: 0;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.75rem;
|
|
||||||
color: scale-color($text-color, $lightness: 30%);
|
|
||||||
}
|
|
||||||
|
|
||||||
.item-title & {
|
|
||||||
&::after {
|
|
||||||
content: attr(href);
|
|
||||||
display: block;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.section-publications & {
|
|
||||||
&::after {
|
|
||||||
content: attr(href);
|
|
||||||
display: block;
|
|
||||||
margin: 0 0.75rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
|
|
|
@ -11,13 +11,9 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.section-title {
|
.section-title {
|
||||||
border-left: solid 0.4rem $text-color;
|
border-left: solid 0.35rem $text-color;
|
||||||
padding-left: 0.5rem;
|
padding-left: 0.4rem;
|
||||||
font-family: $font-1;
|
font-family: $font-1;
|
||||||
|
|
||||||
.right-column & {
|
|
||||||
border-left: solid 0.3rem $text-color;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.item {
|
.item {
|
||||||
|
|
|
@ -17,3 +17,32 @@ main.paper {
|
||||||
.job_title {
|
.job_title {
|
||||||
// font-style: italic;
|
// font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media print {
|
||||||
|
a {
|
||||||
|
// use if you want to print the url
|
||||||
|
&:not(.non-existing)::after {
|
||||||
|
content: " (" attr(href) ")";
|
||||||
|
margin: 0;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 0.75rem;
|
||||||
|
color: scale-color($text-color, $lightness: 30%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-title & {
|
||||||
|
&::after {
|
||||||
|
content: attr(href);
|
||||||
|
display: block;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-publications & {
|
||||||
|
&::after {
|
||||||
|
content: attr(href);
|
||||||
|
display: block;
|
||||||
|
margin: 0 0.75rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
|
@ -1 +0,0 @@
|
||||||
{"Target":"css/main.min.ce35efa31d5a9b210d2d8611078223c82ed49d6f51a468abfe9c6445cabc56ef.css","MediaType":"text/css","Data":{"Integrity":"sha256-zjXvox1amyENLYYRB4IjyC7UnW9RpGir/pxkRcq8Vu8="}}
|
|
Loading…
Reference in a new issue