├── LICENSE ├── README.md ├── cat.gif ├── index.html ├── startpage.gif └── style.css /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) [2021] [kennethcheo] 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Startpage 2 | 3 | [Live Preview](https://kencx.github.io/startpage/) 4 | 5 | Feel free to fork and make your own changes! 6 | 7 | - Font: Fira Code 8 | - Colorscheme: Gruvbox Dark 9 | - Cat Gif: [Here](https://twitter.com/avogado6/status/1165595520967954432?s=19) 10 | 11 | ![startpage](startpage.gif) 12 | 13 | -------------------------------------------------------------------------------- /cat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kencx/startpage/e43602181f23e4b0ce31406bf1d1de76b973f2ce/cat.gif -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ~/startpage 7 | 8 | 9 | 10 | 11 |
12 |
13 |
14 | 15 |
16 |
17 | 18 |
19 |
20 |

> cd ~/_

21 |
22 | 23 |
24 |
25 | 32 |
33 | 34 |
35 | 42 |
43 | 44 |
45 | 52 |
53 | 54 |
55 | 62 |
63 |
64 |
65 |
66 | 67 | 68 | 69 | -------------------------------------------------------------------------------- /startpage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kencx/startpage/e43602181f23e4b0ce31406bf1d1de76b973f2ce/startpage.gif -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --color-bg: #282828; 3 | --color-fg: #EADBB2; 4 | --color-link: #8F9191; 5 | --color-link-visited: #668F8B; 6 | --color-link-hover: #FA7921 ; 7 | } 8 | 9 | html, body { 10 | background: var(--color-bg); 11 | color: var(--color-fg); 12 | font-family: "Fira Code"; 13 | height: 100%; 14 | width: 100%; 15 | margin: 0; 16 | padding: 0; 17 | } 18 | 19 | .container { 20 | display: grid; 21 | grid-template-columns: 1fr 460px 600px 1fr; 22 | grid-template-areas: 23 | ". left right ."; 24 | column-gap: 80px; 25 | justify-items: center; 26 | align-items: center; 27 | min-height: 100%; 28 | } 29 | 30 | .left-container { 31 | grid-area: left; 32 | aspect-ratio: 1/1; 33 | } 34 | 35 | .right-container { 36 | grid-area: right; 37 | height: 50%; 38 | width: 100%; 39 | } 40 | 41 | .gif img { 42 | max-width: 100%; 43 | max-height: 100%; 44 | } 45 | 46 | .head { 47 | display: flex; 48 | flex-direction: column; 49 | align-items: center; 50 | font-size: 40px; 51 | padding-top: 60px; 52 | } 53 | 54 | .category { 55 | display: flex; 56 | flex-direction: column; 57 | width: 180px; 58 | } 59 | 60 | .bookmarks { 61 | display: flex; 62 | justify-content: center; 63 | } 64 | 65 | .links { 66 | display: flex; 67 | flex-direction: column; 68 | align-items: center; 69 | padding-top: 20px; 70 | padding-bottom: 20px; 71 | } 72 | 73 | .title { 74 | font-size: 20px; 75 | } 76 | 77 | li { 78 | font-size: 16px; 79 | list-style-type: none; 80 | padding: 5px 81 | } 82 | 83 | a:link { 84 | text-decoration: none; 85 | color: var(--color-link); 86 | } 87 | 88 | a:visited { 89 | color: var(--color-link-visited); 90 | } 91 | 92 | a:hover { 93 | color: var(--color-link-hover); 94 | } 95 | 96 | .blinking { 97 | animation: opacity 1s ease-in-out infinite; 98 | opacity: 1; 99 | } 100 | 101 | @keyframes opacity { 102 | 0% { 103 | opacity: 1; 104 | } 105 | 106 | 50% { 107 | opacity: 0; 108 | } 109 | 110 | 100% { 111 | opacity: 1; 112 | } 113 | } 114 | --------------------------------------------------------------------------------