v2 done: fixed mobile and responsive issues.
This commit is contained in:
parent
719e74d14b
commit
6352db73c9
93 changed files with 3951 additions and 66 deletions
|
|
@ -28,38 +28,64 @@ body {
|
|||
}
|
||||
}
|
||||
|
||||
.md-typeset .grid {
|
||||
/* .md-typeset .grid {
|
||||
grid-gap: .4rem;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
|
||||
margin: .4em 0;
|
||||
}
|
||||
} */
|
||||
|
||||
/*****************************/
|
||||
|
||||
#experience {
|
||||
height: clamp(60vh, 75vh, 100vh);
|
||||
|
||||
.cards {
|
||||
padding: .4rem;
|
||||
.jobs {
|
||||
display: grid;
|
||||
gap: 2rem;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
padding: 1rem;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
.job {
|
||||
position: relative;
|
||||
padding: 0.5rem;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
background-image: var(--bg-image);
|
||||
background-size: 100px;
|
||||
background-repeat: no-repeat;
|
||||
filter: saturate(0%);
|
||||
opacity: 0.18;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
h2 {
|
||||
color: var(--dark-grey);
|
||||
font-family: var(--general-sans);
|
||||
font-size: clamp(1.5rem, 5vw, 2.5rem);
|
||||
line-height: 1;
|
||||
margin: 0;
|
||||
margin: 0 0 0.5rem 0;
|
||||
}
|
||||
|
||||
.company {
|
||||
font-family: var(--general-sans);
|
||||
font-weight: 400;
|
||||
font-size: clamp(0.9rem, 2vw, 1.2rem);
|
||||
margin-bottom: 1rem;
|
||||
|
||||
span {
|
||||
font-size: clamp(0.6rem, 1.2vw, 0.7rem);
|
||||
font-weight: 400;
|
||||
margin: 0 0 0 25px;
|
||||
margin-left: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -69,8 +95,7 @@ body {
|
|||
font-variation-settings: "opsz" 8;
|
||||
font-weight: 700;
|
||||
line-height: 1.5;
|
||||
margin-bottom: clamp(1.5rem, 3vw, 2rem);
|
||||
margin-top: clamp(1.5rem, 3vw, 2rem);
|
||||
margin: 1.5rem 0;
|
||||
}
|
||||
|
||||
.job-achievements {
|
||||
|
|
@ -81,46 +106,20 @@ body {
|
|||
color: var(--dark-grey);
|
||||
cursor: pointer;
|
||||
font-size: clamp(0.75rem, 1.8vw, 0.9rem);
|
||||
margin: 0;
|
||||
margin: 1rem 0 0.5rem 0;
|
||||
text-transform: none;
|
||||
|
||||
/* &[style*="cursor: default"] {
|
||||
cursor: default;
|
||||
} */
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 0 0 10px 0;
|
||||
margin: 0 0 1rem 0;
|
||||
line-height: 1.6;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.mambu {
|
||||
background-image: url("../media/mambu-logo-272x263.webp");
|
||||
}
|
||||
|
||||
.spread {
|
||||
background-image: url("../media/spread-ai-logo-125x144.webp");
|
||||
}
|
||||
|
||||
.mambu,
|
||||
.spread {
|
||||
background-size: contain;
|
||||
background-repeat: no-repeat;
|
||||
filter: saturate(0);
|
||||
height: 112px;
|
||||
margin-left: 1rem;
|
||||
margin-right: 1rem;
|
||||
position: relative;
|
||||
|
||||
&::after {
|
||||
background: rgba(250, 250, 250, 0.70);
|
||||
bottom: 0;
|
||||
content: '';
|
||||
left: 0;
|
||||
pointer-events: none;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
z-index: -1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#hero {
|
||||
|
|
@ -151,6 +150,7 @@ body {
|
|||
font-size: clamp(2rem, 8vw, 5rem);
|
||||
font-variation-settings: "opsz" 8;
|
||||
font-weight: 900;
|
||||
padding: 0 5px;
|
||||
}
|
||||
|
||||
.metadetails {
|
||||
|
|
@ -216,7 +216,11 @@ body {
|
|||
}
|
||||
|
||||
#skills {
|
||||
margin: 2.5rem;
|
||||
margin: 1.2rem;
|
||||
|
||||
.grid {
|
||||
grid-gap: 4rem;
|
||||
}
|
||||
|
||||
.cards {
|
||||
ul li {
|
||||
|
|
@ -224,8 +228,9 @@ body {
|
|||
display: flex;
|
||||
flex-direction: column;
|
||||
font-size: clamp(1.2rem, 3vw, 1.8rem);
|
||||
gap: 1rem;
|
||||
justify-content: space-evenly;
|
||||
padding: 1rem;
|
||||
padding: 0;
|
||||
|
||||
.technical-icons {
|
||||
align-content: stretch;
|
||||
|
|
@ -323,7 +328,7 @@ body {
|
|||
|
||||
figcaption {
|
||||
color: var(--dark-grey);
|
||||
font-family: var(--general-code);
|
||||
font-family: var(--general-sans);
|
||||
font-size: clamp(0.5rem, 0.7rem, 0.8rem);
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
|
|
@ -331,7 +336,7 @@ body {
|
|||
}
|
||||
|
||||
img {
|
||||
height: 40px;
|
||||
height: 50px;
|
||||
display: block;
|
||||
padding: 5px;
|
||||
width: auto;
|
||||
|
|
@ -529,12 +534,14 @@ body {
|
|||
|
||||
.prefooter {
|
||||
align-items: flex-start;
|
||||
border-bottom: 5px solid var(--light-grey);
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 2rem;
|
||||
justify-content: center;
|
||||
margin-top: 1.3rem;
|
||||
margin-bottom: 0.5rem;
|
||||
margin-bottom: 3rem;
|
||||
padding-bottom: 1rem;
|
||||
text-align: center;
|
||||
|
||||
div {
|
||||
|
|
@ -555,7 +562,7 @@ body {
|
|||
background-color: var(--neutral-grey);
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
font-size: clamp(1rem, 2vw + 2rem, 1.3rem);
|
||||
font-size: clamp(0.7rem, 1vw, 1.2rem);
|
||||
font-weight: 400;
|
||||
justify-content: center;
|
||||
padding: 10px;
|
||||
|
|
@ -572,12 +579,6 @@ body {
|
|||
|
||||
/*****************************/
|
||||
|
||||
@media (max-width: 600px) and (hover: none) {
|
||||
#experience {
|
||||
height: 47vh;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1300px) {
|
||||
#skills>div.grid>ul>li:nth-child(3) {
|
||||
display: none;
|
||||
|
|
@ -588,4 +589,18 @@ body {
|
|||
#skills>div.grid>ul>li:nth-child(4) {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#hero .metadetails {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.faq {
|
||||
bottom: 80px !important;
|
||||
right: 10px !important;
|
||||
}
|
||||
|
||||
.question-icon {
|
||||
bottom: 60px !important;
|
||||
right: 10px !important;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -176,12 +176,12 @@ p {
|
|||
*****************************/
|
||||
|
||||
body {
|
||||
align-items: center;
|
||||
/* align-items: center; */
|
||||
background-color: var(--neutral-grey);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
/* display: flex; */
|
||||
/* justify-content: center;
|
||||
min-height: 100vh;
|
||||
width: 100%;
|
||||
width: 100%; */
|
||||
}
|
||||
|
||||
/* Footer */
|
||||
|
|
|
|||
BIN
content/assets/media/gugulethu-hlekwayo-v202602.pdf
Executable file
BIN
content/assets/media/gugulethu-hlekwayo-v202602.pdf
Executable file
Binary file not shown.
|
|
@ -8,6 +8,7 @@
|
|||
{% endblock %}
|
||||
|
||||
{% block site_meta %}
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="robots"
|
||||
content="nocache, noindex, noimageindex, nofollow, noarchive, nosnippet, notranslate, nositelinkssearchbox, noai, noimageai" />
|
||||
{% endblock %}
|
||||
|
|
@ -49,7 +50,7 @@
|
|||
{{ super() }}
|
||||
|
||||
<!-- Script to protect content on the website -->
|
||||
<script>
|
||||
<!-- <script>
|
||||
// Prevent right-click context menu
|
||||
document.addEventListener('contextmenu', function (e) {
|
||||
e.preventDefault();
|
||||
|
|
@ -76,6 +77,6 @@
|
|||
e.preventDefault();
|
||||
}
|
||||
});
|
||||
</script>
|
||||
</script> -->
|
||||
|
||||
{% endblock %}
|
||||
|
|
|
|||
|
|
@ -50,7 +50,41 @@ title: Resume
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div id="experience" >
|
||||
<div id="experience">
|
||||
<div class="jobs">
|
||||
<div class="job" style="--bg-image: url('../media/mambu-logo-272x263.webp')">
|
||||
<h2>Senior Technical Writer</h2>
|
||||
<div class="company">
|
||||
<abbr title="Mambu is a Software-as-a-Service (SaaS) banking backend.">MAMBU</abbr>
|
||||
<span>2021 to 2023</span>
|
||||
</div>
|
||||
<div class="job-blurb">Promoted to team lead; managing a team of three technical writers.</div>
|
||||
<div class="job-achievements">
|
||||
<h5 onclick="document.querySelector('.mambu-ecosystem-modal-container').classList.add('is-visible')">Documented the Mambu ecosystem <span class="twemoji"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M384 32c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96c0-35.3 28.7-64 64-64zM272 296c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24H184c-13.3 0-24 10.7-24 24s10.7 24 24 24h54.1l-103 103c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l103-103z"></path></svg></span></h5>
|
||||
<p>Documented integrations, such as payment and compliance services, and the low-code orchestrator that clients used for their workflows.</p>
|
||||
<h5 onclick="document.querySelector('.mambu-cli-modal-container').classList.add('is-visible')">Documented a command-line interface <span class="twemoji"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M384 32c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96c0-35.3 28.7-64 64-64zM272 296c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24H184c-13.3 0-24 10.7-24 24s10.7 24 24 24h54.1l-103 103c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l103-103z"></path></svg></span></h5>
|
||||
<p>Documented the Mambu <abbr title='Command-line interfaces use text instead of UI elements.'>CLI</abbr> for external engineers to connect to the backend directly.</p>
|
||||
<h5 style="cursor: default" >Assumed leadership role</h5>
|
||||
<p>Promoted to team lead, which shifted the role into more managerial responsibilities - on top of working on documentation.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="job" style="--bg-image: url('../media/spread-ai-logo-125x144.webp')">
|
||||
<h2>Documentation Engineer</h2>
|
||||
<div class="company"><abbr title="SPREAD is a Software-as-a-Service (SaaS) platform for creating actionable and contextualised data for product engineers. The platform counts Volkswagen, Audi, BMW, and other automotive firms as users.">SPREAD</abbr> <span>2024 to 2026</span></div>
|
||||
<div class="job-blurb">First Technical Writer hired; to establish the documentation function. <a href="https://docs.spread.ai" target="_blank"><span class="twemoji"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="var(--dark-grey)" d="M384 32c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96c0-35.3 28.7-64 64-64zM272 296c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24H184c-13.3 0-24 10.7-24 24s10.7 24 24 24h54.1l-103 103c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l103-103z"></path></svg></span></a></div>
|
||||
<div class="job-achievements">
|
||||
<h5 style="cursor: default">Built a docs-as-code publishing pipeline</h5>
|
||||
<p>Built a pipeline that used GitHub Actions to build the documentation site, Vale to lint content, Docker to deploy the site, and shell scripting.</p>
|
||||
<h5 onclick="document.querySelector('.spread-docs-modal-container').classList.add('is-visible')">Established the documentation function <span class="twemoji"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M384 32c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96c0-35.3 28.7-64 64-64zM272 296c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24H184c-13.3 0-24 10.7-24 24s10.7 24 24 24h54.1l-103 103c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l103-103z"></path></svg></span></h5>
|
||||
<p>Socialized the company to documentation processes; this included onboarding colleagues to edit and use docs.</p>
|
||||
<h5 style="cursor: default">Documented the full product range</h5>
|
||||
<p>Documented the full product range within two quarters. Kept the documentation up to date through two product refreshes.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- <div id="experience" >
|
||||
<div class="grid cards">
|
||||
<ul>
|
||||
<li>
|
||||
|
|
@ -85,7 +119,7 @@ title: Resume
|
|||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div> -->
|
||||
|
||||
<div class="mambu-ecosystem-modal-container modal-container">
|
||||
<label onclick="this.closest('.modal-container').classList.remove('is-visible')" class="close-icon">
|
||||
|
|
@ -276,7 +310,7 @@ title: Resume
|
|||
<li>
|
||||
<figure>
|
||||
<img src="assets/media/ollama-logo-250x250.webp" alt="The Ollama logo" >
|
||||
<figcaption>Used Ollama to manage, test, and run open-source models locally.</figcaption>
|
||||
<figcaption>Used Ollama to manage and run models locally.</figcaption>
|
||||
</figure>
|
||||
</li>
|
||||
<li>
|
||||
|
|
@ -288,7 +322,7 @@ title: Resume
|
|||
<li>
|
||||
<figure>
|
||||
<img src="assets/media/modelcontextprotocol-logo-250x250.webp" alt="The MCP logo" >
|
||||
<figcaption>Experimented with offering an Model Context Protocol server at Spread.</figcaption>
|
||||
<figcaption>Experimented with Model Context Protocol servers.</figcaption>
|
||||
</figure>
|
||||
</li>
|
||||
<li>
|
||||
|
|
@ -346,7 +380,7 @@ title: Resume
|
|||
<div class="prefooter" >
|
||||
<div><a href="https://git.gugulet.hu/explore" target="_blank"><img src="assets/media/git-link-512x512.webp" alt="Self-hosted ForgeJo instance with git repos"></a></div>
|
||||
<div><a href="https://linkedin.com/in/gugulet-hu" target="_blank"><img src="assets/media/linkedin-logo-512x512.webp" alt="Link to LinkedIn profile"></a></div>
|
||||
<!-- <div><a href="https://gugulet.hu" target="_blank"><img src="assets/media/download-link-256x256.webp" alt="Link to the home page"></a></div> -->
|
||||
<div><a href="assets/media/gugulethu-hlekwayo-v202602.pdf" target="_blank"><img src="assets/media/download-link-256x256.webp" alt="Link to download the PDF resume (860kb)"></a></div>
|
||||
</div>
|
||||
|
||||
<div class="faq-container">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue