diff --git a/blog/2020-08-19-web-crawling-with-puppeteer-and-tor-browser.md b/blog/2020-08-19-web-crawling-with-puppeteer-and-tor-browser.md
index 66ce53a..1b0a3d5 100644
--- a/blog/2020-08-19-web-crawling-with-puppeteer-and-tor-browser.md
+++ b/blog/2020-08-19-web-crawling-with-puppeteer-and-tor-browser.md
@@ -130,4 +130,4 @@ const browser = await puppeteer.launch(browserOptions);
Now you are ready to start crawling data.
-**Happy coding!**
\ No newline at end of file
+**Happy coding!**
diff --git a/src/index.css b/src/index.css
index 8c0ff66..5bfb0b0 100644
--- a/src/index.css
+++ b/src/index.css
@@ -5,3 +5,18 @@
body {
font-family: 'Montserrat', sans-serif;
}
+
+ul.list-colored {
+ list-style: none;
+}
+
+ul.list-colored li::before {
+ @apply text-accent;
+
+ content: '\2022';
+ font-weight: bold;
+ display: inline-block;
+ width: 1rem;
+ font-size: 1.25rem;
+ margin-left: -1rem;
+}
diff --git a/src/profile.tsx b/src/profile.tsx
index a0c975e..0344ff2 100644
--- a/src/profile.tsx
+++ b/src/profile.tsx
@@ -36,7 +36,7 @@ export default {
company: 'Nine',
period: '10/2019 - Present',
description: (
-
+
-
Maintaining a highly scalable single sign on system for 9Now apps
@@ -54,7 +54,7 @@ export default {
company: 'Accelo',
period: '8/2017 - 10/2019',
description: (
-
+
-
Debugged and resolving 2-3 issues a day accurately and in a timely
manner using Jira
@@ -73,7 +73,7 @@ export default {
company: 'Itree Pty Ltd',
period: '7/2016 - 8/2017',
description: (
-
+
-
Engaged in various stages of the software development life-cycle
including design, development, and testing
diff --git a/src/templates/BlogTemplate.tsx b/src/templates/BlogTemplate.tsx
index 0f7724a..6575838 100644
--- a/src/templates/BlogTemplate.tsx
+++ b/src/templates/BlogTemplate.tsx
@@ -40,7 +40,32 @@ export const query = graphql`
const Article = styled.main`
a {
- ${tw`type-link`};
+ ${tw`type-link`}
+ }
+
+ ul,
+ ol {
+ padding: 0.1rem;
+ }
+
+ ol {
+ ${tw`list-decimal`}
+ margin-left: 1.25rem;
+ margin-top: 1rem;
+
+ > li {
+ font-weight: 500;
+ }
+ }
+
+ ul li:before {
+ color: ${theme`colors.accent`};
+ font-weight: bold;
+ display: inline-block;
+ width: 1rem;
+ font-size: 1.5rem;
+ transform: translateY(2px);
+ content: '\\2022';
}
p {