diff options
-rw-r--r-- | README.md | 10 | ||||
-rw-r--r-- | index.html | 2 | ||||
-rw-r--r-- | style.css | 18 |
3 files changed, 18 insertions, 12 deletions
@@ -1,14 +1,12 @@ # Startpage -Custom browser startpage: +[Live Preview](https://kencx.github.io/startpage/) + +Feel free to fork and make your own changes! + - Font: Fira Code - Colorscheme: Gruvbox Dark - Cat Gif: [Here](https://twitter.com/avogado6/status/1165595520967954432?s=19) -[Live Preview](https://kennethcheo.github.io/startpage/) - ![startpage](startpage.gif) -<p style="text-align: center;">cat</p> -## Todo: -- Turn blinking caret into working search bar @@ -3,7 +3,7 @@ <head> <meta charset="UTF-8"> - <title>HOME</title> + <title>~/startpage</title> <link rel="stylesheet" type="text/css" href="style.css"> </head> @@ -1,7 +1,15 @@ +:root { + --color-bg: #282828; + --color-fg: #EADBB2; + --color-link: #8F9191; + --color-link-visited: #668F8B; + --color-link-hover: #FA7921 ; +} + html, body { - background:#282828; + background: var(--color-bg); + color: var(--color-fg); font-family: "Fira Code"; - color: #EADBB2; height: 100%; width: 100%; margin: 0; @@ -74,15 +82,15 @@ li { a:link { text-decoration: none; - color: #8F9191; + color: var(--color-link); } a:visited { - color: #668F8B; + color: var(--color-link-visited); } a:hover { - color: #FA7921; + color: var(--color-link-hover); } .blinking { |