From 3f20457b8efe016f94b57357c2e176a93be8e1fd Mon Sep 17 00:00:00 2001 From: unitexe Date: Tue, 6 Jan 2026 23:42:27 -0600 Subject: Customize for closed circuit consulting - Different header color - Update all text - Change github logo to git square - Stack page links vertically instead of horizontally - De-stagger user projects, remove images & remove project links - Remove author attribution from footer - Remove google analytics --- sass/_header.scss | 8 +++-- sass/_projects.scss | 73 +++++-------------------------------------- sass/_vars.scss | 3 +- templates/content.html | 84 +++++++++++++++++++++++++++++--------------------- templates/index.html | 1 - templates/macros.html | 28 +++-------------- 6 files changed, 69 insertions(+), 128 deletions(-) diff --git a/sass/_header.scss b/sass/_header.scss index c196cd8..1726af1 100644 --- a/sass/_header.scss +++ b/sass/_header.scss @@ -47,11 +47,15 @@ .header-links { margin: 10px; + display: flex; + flex-direction: column; + align-items: center; + gap: 10px; .link { color: #FFF; text-decoration: none; font-size: 15px; - margin: 10px; + margin: 5px 0; @media only screen and (min-width:$cut){ font-size: 20px; } @@ -119,4 +123,4 @@ color: $sec; } } -} +} \ No newline at end of file diff --git a/sass/_projects.scss b/sass/_projects.scss index ef75493..bcc442b 100644 --- a/sass/_projects.scss +++ b/sass/_projects.scss @@ -12,6 +12,9 @@ .user-projects { margin: 20px auto; + clear: both; + display: block; + width: 100%; img { max-width: 100%; height: auto; @@ -29,73 +32,13 @@ } } -.contents { - @media only screen and (min-width: $cut) { - margin-left: 0; - width: 48%; - } -} - +.contents, .contents-right { + display: block; @media only screen and (min-width: $cut) { - float: right; - margin-top: -5%; - width: 48%; - } -} -.images-right { - @media only screen and (min-width: $cut) { - float: right; - width: 48%; - } - img { - @media only screen and (min-width: $cut) { - float: right; - } - } -} - -.images-left { - @media only screen and (min-width: $cut) { - float: left; + margin-left: auto; + margin-right: auto; width: 48%; - } - img { - @media only screen and (min-width: $cut) { - float: left; - } - } -} - -.project-link { - display: inline-block; - margin: 10px 0px; - padding: 5px; - color: $main; - background-color: transparent; - border: 1px solid $main; - border-radius: 10px; - text-align: center; - outline: none; - text-decoration: none; - cursor: pointer; - transition: color 0.3s ease-out, - background-color 0.3s ease-out, - border-color 0.3s ease-out; - &:hover { - background-color: $purple; - border-color: $purple; - color: #fff; - transition: color 0.3s ease-in, - background-color 0.3s ease-in, - border-color 0.3s ease-in; - } - &:active { - background-color: $purple; - border-color: $purple; - color: #fff; - transition: color 0.3s ease-in, - background-color 0.3s ease-in, - border-color 0.3s ease-in; + float: none; } } \ No newline at end of file diff --git a/sass/_vars.scss b/sass/_vars.scss index b14bd7c..8ab3511 100644 --- a/sass/_vars.scss +++ b/sass/_vars.scss @@ -1,4 +1,5 @@ -$main: #1a222c; +$main: #110b29; +//$main: #1a222c; $sec: #4B5664; $purple: #54516A; $cut: 550px; \ No newline at end of file diff --git a/templates/content.html b/templates/content.html index 88f9e6d..6dedd3b 100644 --- a/templates/content.html +++ b/templates/content.html @@ -1,65 +1,79 @@ {% macro about() %}
-

My Expertise

+

Expertise

{{ config.extra.user_description }}

-

Design

- - - -

Mumblecore hexagon kombucha, pitchfork four loko raclette intelligentsia master cleanse. - Vinyl XOXO lumbersexual

+

Embedded

+

Embedded Linux (Yocto)

+

Embedded GUI

+

IoT

+

Microcontrollers

+

Secure Boot

-

Code

- - - -

Mumblecore hexagon kombucha, pitchfork four loko raclette intelligentsia master cleanse. - Vinyl XOXO lumbersexual

+

Other

+

OCI Containers

+

Desktop Applications

+

Dev Ops

+

Testing

+

Web Applications

-

Tools

- - - -

Mumblecore hexagon kombucha, pitchfork four loko raclette intelligentsia master cleanse. - Vinyl XOXO lumbersexual

+

Languages

+

C, C++

+

C#

+

Python

+

Rust

+

VHDL

{% endmacro about %} {% macro projects() %}
-

Featured Projects

+

Experience

-
- mountains +
+

Industrial Devices

+
    +
  • CPLDs
  • +
  • Embedded Linux (Yocto)
  • +
  • OCI Containers
  • +
+

We have developed numerous projects (both small and large) in the industrial space, from solar power management to paint mixing.

+
+
-

Project Title

+

R&D Medical Devices

    -
  • Featured Skills
  • +
  • Microcontrollers
  • +
  • Desktop Applications
-

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

- Check it out +

We have developed firmware and software components for R&D medical devices responsible for exploring new treatments for atrial fibrillation and ventricular fibrillation.

-
- mountains +
+

Medical Devices

+
    +
  • Embedded Linux (Yocto)
  • +
+

We have developed multiple custom, linux based operating systems for production medical devices responsible for critical, life preserving procedures.

-
-

Project Title

+
+
+
+

Medical Device Testing

    -
  • Featured Skills
  • +
  • Embedded Linux (Yocto)
  • +
  • Microcontrollers
  • +
  • Web Applications
-

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

- Check it out +

We have developed multiple projects to faciltate the manufacturing and testing of medical devices. Foo bar foobar foo bar.

-{% endmacro projects %} - +{% endmacro projects %} \ No newline at end of file diff --git a/templates/index.html b/templates/index.html index bc7d358..ac142f7 100644 --- a/templates/index.html +++ b/templates/index.html @@ -24,6 +24,5 @@ {{ macros::footer() }} - {{ macros::google_analytics() }} diff --git a/templates/macros.html b/templates/macros.html index 9348956..6586184 100644 --- a/templates/macros.html +++ b/templates/macros.html @@ -15,7 +15,6 @@ {% macro footer() %} @@ -30,33 +29,14 @@ {{ config.extra.user_title | linebreaksbr | safe }}
- - - - + +
{% endmacro header %} - -{% macro google_analytics() %} - -{% if config.extra.google_analytics %} - -{% endif %} -{% endmacro google_analytics %} -- cgit v1.2.3