Project pages now auto-generated with jekyll data.

This commit is contained in:
MajorDroolz
2023-01-04 21:32:02 -05:00
parent f0b2bc0474
commit 34e75a3748
13 changed files with 196 additions and 121 deletions

24
styles/tech.css Normal file
View File

@@ -0,0 +1,24 @@
---
---
.chip {
font-size: 15px;
font-family: "Open Sans";
font-weight: 900;
display: inline-flex;
justify-content: center;
align-items: center;
padding: 5px 20px;
border-radius: 10px;
text-decoration: none;
}
{% for tech in site.data.techs %}
{% assign id = tech[0] %}
{% assign data = tech[1] %}
.chip.{{id}} {
background-color: {{data.back}};
color: {{data.fore}};
}
{% endfor %}