├── README.md ├── style.css ├── index.html └── javascript.js /README.md: -------------------------------------------------------------------------------- 1 | # Minimal-startpage 2 | 3 | Startpage with a minimal theme 4 | 5 | 6 | # Launch 7 | 8 | A startpage that supports commands. 9 | 10 | From [/r/startpages](https://www.reddit.com/r/startpages): 11 | 12 | > A startpage is the page you first see when you open your browser. A custom startpage may have links to your favourite sites and maybe a search box for your favourite search engine. 13 | 14 | ## Features 15 | 16 | - Generates searches from [Google](https://google.com/) or [DuckDuckGo](https://duckduckgo.com/) 17 | - Supports commands (see below for more details) 18 | 19 | 20 | ## Screenshot 21 | 22 |  23 | 24 | ## Commands 25 | 26 | The following is a list of all commands available for input into the search box, as well as their functions: 27 | 28 | - `[-?]` 29 | - go to the help menu with the list of all commands 30 |  31 | 32 | 33 | ## Fonts: 34 | The font used in this startpage: 35 | * [Ubuntu mono](https://www.fontsquirrel.com/fonts/ubuntu-mono) 36 | 37 | ## Usage 38 | 39 | Most browsers will require you to use extensions to set a custom startpage as your new tab page: 40 | 41 | - [New Tab Redirect](https://chrome.google.com/webstore/detail/new-tab-redirect/icpgjfneehieebagbmdbhnlpiopdcmna) for Chrome 42 | - [New Tab Override](https://addons.mozilla.org/en-US/firefox/addon/new-tab-override/) for Firefox 43 | - [Custom New Tab Page](https://addons.opera.com/en/extensions/details/custom-new-tab-page/) for Opera 44 | - Safari - set this startpage as your homepage in settings 45 | 46 | 47 | ## Credits 48 | 49 | Startpage by areking. 50 | [Other Startpages](https://areking.github.io/) 51 | 52 | ## License 53 | 54 | GNU GENERAL PUBLIC LICENSE 55 | 56 | You can do whatever you want with this. Enjoy! 57 | 58 | [Minimal-startpage](https://redd.it/5oqz0b) 59 | 60 | 61 | 62 | 63 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | 2 | html, body { 3 | margin: 0; 4 | padding: 0; 5 | text-transform: uppercase; 6 | } 7 | 8 | body { 9 | background-color: #373D45; 10 | color:#979c9b; 11 | } 12 | 13 | main { 14 | display: block; 15 | position: absolute; 16 | top: 50%; 17 | left: 50%; 18 | transform: translate(-50%, -50%); 19 | } 20 | 21 | @media screen and (max-width: 500px) { 22 | .header { 23 | display: block; 24 | } 25 | } 26 | 27 | #clock { 28 | color: #ffffff; 29 | margin-bottom: 5px; 30 | } 31 | #datebox { 32 | display: inline-block; 33 | font-weight: bold; 34 | } 35 | 36 | .header { 37 | width: 60px; 38 | text-align: right; 39 | font-weight: bold; 40 | margin: 0 10px; 41 | } 42 | 43 | li { 44 | font-size: 17px; 45 | font-weight: bold; 46 | font-family: "ubuntu mono"; 47 | display: inline-block; 48 | list-style: none; 49 | margin: 2px 5px; 50 | } 51 | 52 | a { 53 | color:#979c9b; 54 | text-decoration: none; 55 | } 56 | 57 | a:hover { 58 | color: white; 59 | } 60 | 61 | #input1 { 62 | background: #454B53; 63 | color: white; 64 | border: none; 65 | font-family: "ubuntu mono"; 66 | font-size: 17px; 67 | font-weight: bold; 68 | height: 17px; 69 | margin-top: 5px; 70 | padding: 5px; 71 | transition: .2s; 72 | width: 100%; 73 | outline: none; 74 | text-transform: uppercase; 75 | } 76 | 77 | #help { 78 | display: none; 79 | margin-top: 10px; 80 | } 81 | 82 | .col { 83 | width: 20%; 84 | display: inline-block; 85 | vertical-align: top; 86 | } 87 | .cmdH { 88 | display: block; 89 | text-align: right; 90 | color: white; 91 | } 92 | .actH { 93 | display: block; 94 | color: white; 95 | } 96 | .cmd { 97 | display: block; 98 | text-align: right; 99 | } 100 | .act { 101 | display: block; 102 | } 103 | 104 | 105 | /* COLORS */ 106 | .purple { 107 | color: #dd98f2; 108 | } 109 | .red { 110 | color: #f68678; 111 | } 112 | .yellow { 113 | color: #f7e595; 114 | } 115 | .green { 116 | color: #92d690; 117 | } 118 | .blue { 119 | color: #8293ef; 120 | } 121 | 122 | 123 | 124 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 |