diff options
author | Indrajith K L | 2022-09-19 23:05:51 +0530 |
---|---|---|
committer | Indrajith K L | 2022-09-19 23:05:51 +0530 |
commit | e2f69a2c0f0bfbdd7f3e61b86b3c337e882c7d19 (patch) | |
tree | 1dabad0520c380af870fbc2cb737221425ef6a7d /src | |
parent | ecd5beabd6e04862d8398f62fc743f1e81ff9c63 (diff) | |
download | indrajith-dev-e2f69a2c0f0bfbdd7f3e61b86b3c337e882c7d19.tar.gz indrajith-dev-e2f69a2c0f0bfbdd7f3e61b86b3c337e882c7d19.tar.bz2 indrajith-dev-e2f69a2c0f0bfbdd7f3e61b86b3c337e882c7d19.zip |
Performance and eyecandy optimization based on chrome lighthouse
Diffstat (limited to 'src')
-rw-r--r-- | src/_includes/assets/css/styles.css | 5 | ||||
-rw-r--r-- | src/index.njk | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/_includes/assets/css/styles.css b/src/_includes/assets/css/styles.css index f9eaca4..8ab0866 100644 --- a/src/_includes/assets/css/styles.css +++ b/src/_includes/assets/css/styles.css @@ -1378,6 +1378,11 @@ select { color: rgb(79 70 229 / var(--tw-text-opacity)); } +.text-cyan-800 { + --tw-text-opacity: 1; + color: rgb(21 94 117 / var(--tw-text-opacity)); +} + .underline { -webkit-text-decoration-line: underline; text-decoration-line: underline; diff --git a/src/index.njk b/src/index.njk index 87aba67..9bf43ca 100644 --- a/src/index.njk +++ b/src/index.njk @@ -8,7 +8,7 @@ alternatetitle: "Hello Friend!! My name is Indrajith K L." <p class="text-lg md:text-2xl font-bold">{{alternatetitle}}</p> <p class="mt-3 text-justify"> I'm a web developer, hobbyist game developer from Kerala, India working as a front-end developer. - This site is where I write about my fun side projects, R&D's, random thoughts, game development etc. Since you here why don't you read some posts from <a href="/posts" class="text-red-700"> here</a>. + This site is where I write about my fun side projects, R&D's, random thoughts, game development etc. Since you here why don't you read some <a href="/posts" class="text-black font-bold">posts</a>. </p> </div> </div> |