From def6a98ad17a5fa0bfb733c4ddb44fd077787844 Mon Sep 17 00:00:00 2001 From: Ngô Ngọc Đức Huy Date: Mon, 17 Oct 2022 22:32:24 +0700 Subject: Create CV --- index.html | 109 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ style.css | 85 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 194 insertions(+) create mode 100644 index.html create mode 100644 style.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..c3d6bf6 --- /dev/null +++ b/index.html @@ -0,0 +1,109 @@ + + + + + Ngô Ngọc Đức Huy + + + + + + + + +
+

Ngô Ngọc Đức Huy

+
+
+

Basic info

+
+
Position
Back-end developer
+
E-Mail
+
Location
Hà Nội, Việt Nam
(prefer remote work)
+
+

Certifications

+
    +
  • IELTS: 6.5
  • +
  • TCF: 363/B1
  • +
+

Languages

+
    +
  • Vietnamese (native)
  • +
  • English (proficient)
  • +
  • French (basic)
  • +
+

Knowledge

+
+
Programming Languages
+
Python
+
Bash
+
JavaScript
+
Go
+
Frameworks
+
Django
+
Flask
+
Systems
+
NixOS
+
Alpine Linux
+
Debian GNU/Linux
+
openBSD
+
Databases
+
MariaDB
+
SQLite
+
RethinkDB
+
Redis
+
Elasticsearch
+
+
+ +
+
+ + + diff --git a/style.css b/style.css new file mode 100644 index 0000000..1195923 --- /dev/null +++ b/style.css @@ -0,0 +1,85 @@ +:root { + font-family: serif; + text-rendering: optimizelegibility; + font-kerning: normal; + color-scheme: light dark; +} +/* */ +@supports (color-scheme: light dark) { + @media (prefers-color-scheme: dark) { + a { color: gold; } + } +} +main { + margin: 0 auto; +} + +.container { + display: grid; + grid-template-columns: 1fr 2fr; +} + +.container #left { + grid-column: 1; +} + +.container #right { + margin-left: 1em; + grid-column: 2; +} +@media screen and (max-width: 900px) { + .container { + display: table + } +} + + + +code { font-family: monospace } + +.h-event .p-summary { display: inline-table } + +h1,h2,h3,h4,h5,h6 { + font-family: sans-serif; + font-kerning: auto; +} + +dt { + font-weight: bold; +} + +h1,h2 { + display: table; + padding: 0.25ex 0.5em; +} + +h1 { border-bottom: 2pt solid } +h2 { border-bottom: 1pt solid } + +dd { + margin-left: 1.5rem; +} + +#skills dd { + display: inline-block; + border-bottom: 1px dashed gray; +} + +@media screen { + main { max-width: 90em } +} + +@media print { + nav, footer { display: none } + a:not(.no-print)::after { content: " (" attr(href) ")"; } + a::after { + font-family: monospace; + font-size: 0.9rem; + color: blue; + } + a { + text-decoration: none; + color: initial; + } + section { page-break-inside: avoid } +} -- cgit 1.4.1