1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-06-29 00:57:41 +02:00

style tweaks

This commit is contained in:
Matthias Kretschmann 2019-11-18 17:17:47 +01:00
parent 21cb1a1ffa
commit b46b006dd7
Signed by: m
GPG Key ID: 606EEEF3C479A91F
4 changed files with 37 additions and 18 deletions

View File

@ -228,5 +228,9 @@
"language": "German", "language": "German",
"fluency": "Native speaker" "fluency": "Native speaker"
} }
] ],
"meta": {
"canonical": "https://matthiaskretschmann.com/resume",
"lastModified": ""
}
} }

View File

@ -17,6 +17,10 @@
height: $font-size-base * 0.9; height: $font-size-base * 0.9;
} }
} }
@media print {
display: none;
}
} }
.checkboxContainer { .checkboxContainer {

View File

@ -9,14 +9,14 @@
&::before { &::before {
content: ''; content: '';
display: block; display: block;
width: $font-size-base; width: $font-size-mini;
height: $font-size-base; height: $font-size-mini;
border-radius: 50%; border-radius: 50%;
background: $body-background-color; background: $body-background-color;
border: 0.1rem solid $color-headings; border: 0.1rem solid $color-headings;
position: absolute; position: absolute;
left: -($font-size-base / 1.8); left: -($font-size-mini / 1.8);
top: 0; top: 0.15rem;
:global(.dark) & { :global(.dark) & {
background: $body-background-color--dark; background: $body-background-color--dark;
@ -64,16 +64,14 @@
} }
@media print { @media print {
.time { .resumeItem {
@media (min-width: $screen-md) { padding-bottom: $spacer * 2;
text-align: left;
position: relative;
top: auto;
right: auto;
}
} }
:global(html) { .time {
font-size: 10pt; text-align: left;
position: relative;
top: auto;
right: auto;
} }
} }

View File

@ -92,11 +92,24 @@
} }
@media print { @media print {
:global(html) {
font-size: 8pt;
}
body {
background: #fff !important;
margin: 1cm 1.5cm;
}
p {
color: silver;
}
.title {
margin-bottom: 0;
}
.resume { .resume {
grid-template-columns: 1fr; grid-template-columns: 1fr;
} }
:global(html) {
font-size: 10pt;
}
} }