mirror of
https://github.com/Mikaela/cv.git
synced 2025-08-17 18:17:22 +02:00
Compare commits
6 Commits
05a42503d4
...
9713d6fae0
Author | SHA1 | Date | |
---|---|---|---|
9713d6fae0 | |||
48bc4f7774 | |||
0642f0e2b1 | |||
adfa0132d8 | |||
de109e3331 | |||
![]() |
5dceb8fb2f |
8
.gitattributes
vendored
8
.gitattributes
vendored
@ -2,9 +2,9 @@
|
||||
* text=auto eol=lf linguist-detectable
|
||||
|
||||
# Built-in diff patterns (disabled by default).
|
||||
*.css diff=css
|
||||
*.html diff=html
|
||||
*.php diff=php
|
||||
*.css diff=css
|
||||
*.html diff=html
|
||||
*.php diff=php
|
||||
*.{md,markdown} diff=markdown
|
||||
|
||||
# These don't feel like mine
|
||||
@ -17,7 +17,9 @@ _sass/** text=auto -linguist-detectable
|
||||
|
||||
# Unnecessary for statistics
|
||||
Gemfile text linguist-vendored
|
||||
package.json text linguist-vendored
|
||||
Gemfile.lock text linguist-generated
|
||||
pnpm-lock.yaml text linguist-generated
|
||||
|
||||
# LFS
|
||||
*.jpeg filter=lfs diff=lfs merge=lfs -text
|
||||
|
2
.github/CODEOWNERS
vendored
2
.github/CODEOWNERS
vendored
@ -1 +1 @@
|
||||
* @Mikaela
|
||||
* @Mikaela
|
||||
|
@ -1 +1 @@
|
||||
* @Mikaela
|
||||
* @Mikaela
|
||||
|
26
Gemfile.lock
generated
26
Gemfile.lock
generated
@ -5,7 +5,7 @@ GEM
|
||||
public_suffix (>= 2.0.2, < 6.0)
|
||||
bigdecimal (3.1.8)
|
||||
colorator (1.1.0)
|
||||
concurrent-ruby (1.3.2)
|
||||
concurrent-ruby (1.3.3)
|
||||
em-websocket (0.5.3)
|
||||
eventmachine (>= 0.12.9)
|
||||
http_parser.rb (~> 0)
|
||||
@ -90,29 +90,29 @@ GEM
|
||||
rb-fsevent (0.11.2)
|
||||
rb-inotify (0.11.1)
|
||||
ffi (~> 1.0)
|
||||
rexml (3.2.8)
|
||||
strscan (>= 3.0.9)
|
||||
rexml (3.3.0)
|
||||
strscan
|
||||
rouge (4.2.1)
|
||||
safe_yaml (1.0.5)
|
||||
sass-embedded (1.77.4-aarch64-linux-gnu)
|
||||
sass-embedded (1.77.5-aarch64-linux-gnu)
|
||||
google-protobuf (>= 3.25, < 5.0)
|
||||
sass-embedded (1.77.4-aarch64-linux-musl)
|
||||
sass-embedded (1.77.5-aarch64-linux-musl)
|
||||
google-protobuf (>= 3.25, < 5.0)
|
||||
sass-embedded (1.77.4-arm-linux-gnueabihf)
|
||||
sass-embedded (1.77.5-arm-linux-gnueabihf)
|
||||
google-protobuf (>= 3.25, < 5.0)
|
||||
sass-embedded (1.77.4-arm-linux-musleabihf)
|
||||
sass-embedded (1.77.5-arm-linux-musleabihf)
|
||||
google-protobuf (>= 3.25, < 5.0)
|
||||
sass-embedded (1.77.4-arm64-darwin)
|
||||
sass-embedded (1.77.5-arm64-darwin)
|
||||
google-protobuf (>= 3.25, < 5.0)
|
||||
sass-embedded (1.77.4-x86-linux-gnu)
|
||||
sass-embedded (1.77.5-x86-linux-gnu)
|
||||
google-protobuf (>= 3.25, < 5.0)
|
||||
sass-embedded (1.77.4-x86-linux-musl)
|
||||
sass-embedded (1.77.5-x86-linux-musl)
|
||||
google-protobuf (>= 3.25, < 5.0)
|
||||
sass-embedded (1.77.4-x86_64-darwin)
|
||||
sass-embedded (1.77.5-x86_64-darwin)
|
||||
google-protobuf (>= 3.25, < 5.0)
|
||||
sass-embedded (1.77.4-x86_64-linux-gnu)
|
||||
sass-embedded (1.77.5-x86_64-linux-gnu)
|
||||
google-protobuf (>= 3.25, < 5.0)
|
||||
sass-embedded (1.77.4-x86_64-linux-musl)
|
||||
sass-embedded (1.77.5-x86_64-linux-musl)
|
||||
google-protobuf (>= 3.25, < 5.0)
|
||||
strscan (3.1.0)
|
||||
terminal-table (3.0.2)
|
||||
|
@ -34,6 +34,11 @@ $base-font-family: $serif-font-family;
|
||||
hyphens: auto !important;
|
||||
// Experimental trick to make all emojis text if supported.
|
||||
font-variant-emoji: text;
|
||||
/* WCAG minimum suggestions */
|
||||
margin-bottom: 2 !important;
|
||||
line-height: 1.5 !important;
|
||||
letter-spacing: 0.12 !important;
|
||||
word-spacing: 0.16 !important;
|
||||
}
|
||||
|
||||
a {
|
||||
@ -56,7 +61,6 @@ code {
|
||||
}
|
||||
|
||||
// Sans-Serif for headings to constrast with aminda.eu
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
@ -65,6 +69,10 @@ h6 {
|
||||
font-family: $sans-serif-font-family !important;
|
||||
}
|
||||
|
||||
h2.footer-heading {
|
||||
font-family: $serif-font-family !important;
|
||||
}
|
||||
|
||||
// The introduction on top
|
||||
#bio {
|
||||
text-align: center;
|
||||
|
2
package.json
vendored
2
package.json
vendored
@ -1,7 +1,7 @@
|
||||
{
|
||||
"devDependencies": {
|
||||
"@prettier/plugin-xml": "3.4.1",
|
||||
"prettier": "3.3.1",
|
||||
"prettier": "3.3.2",
|
||||
"prettier-plugin-sh": "0.14.0"
|
||||
}
|
||||
}
|
||||
|
22
pnpm-lock.yaml
generated
22
pnpm-lock.yaml
generated
@ -9,13 +9,13 @@ importers:
|
||||
devDependencies:
|
||||
"@prettier/plugin-xml":
|
||||
specifier: 3.4.1
|
||||
version: 3.4.1(prettier@3.3.1)
|
||||
version: 3.4.1(prettier@3.3.2)
|
||||
prettier:
|
||||
specifier: 3.3.1
|
||||
version: 3.3.1
|
||||
specifier: 3.3.2
|
||||
version: 3.3.2
|
||||
prettier-plugin-sh:
|
||||
specifier: 0.14.0
|
||||
version: 0.14.0(prettier@3.3.1)
|
||||
version: 0.14.0(prettier@3.3.2)
|
||||
|
||||
packages:
|
||||
"@prettier/plugin-xml@3.4.1":
|
||||
@ -53,10 +53,10 @@ packages:
|
||||
peerDependencies:
|
||||
prettier: ^3.0.3
|
||||
|
||||
prettier@3.3.1:
|
||||
prettier@3.3.2:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-7CAwy5dRsxs8PHXT3twixW9/OEll8MLE0VRPCJyl7CkS6VHGPSlsVaWTiASPTyGyYRyApxlaWTzwUxVNrhcwDg==,
|
||||
integrity: sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==,
|
||||
}
|
||||
engines: { node: ">=14" }
|
||||
hasBin: true
|
||||
@ -81,10 +81,10 @@ packages:
|
||||
}
|
||||
|
||||
snapshots:
|
||||
"@prettier/plugin-xml@3.4.1(prettier@3.3.1)":
|
||||
"@prettier/plugin-xml@3.4.1(prettier@3.3.2)":
|
||||
dependencies:
|
||||
"@xml-tools/parser": 1.0.11
|
||||
prettier: 3.3.1
|
||||
prettier: 3.3.2
|
||||
|
||||
"@xml-tools/parser@1.0.11":
|
||||
dependencies:
|
||||
@ -96,13 +96,13 @@ snapshots:
|
||||
|
||||
mvdan-sh@0.10.1: {}
|
||||
|
||||
prettier-plugin-sh@0.14.0(prettier@3.3.1):
|
||||
prettier-plugin-sh@0.14.0(prettier@3.3.2):
|
||||
dependencies:
|
||||
mvdan-sh: 0.10.1
|
||||
prettier: 3.3.1
|
||||
prettier: 3.3.2
|
||||
sh-syntax: 0.4.2
|
||||
|
||||
prettier@3.3.1: {}
|
||||
prettier@3.3.2: {}
|
||||
|
||||
regexp-to-ast@0.5.0: {}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user