├── LICENSE.md ├── README.md ├── index.html ├── scss └── style.scss └── style.css /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Dylan Araps 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 here: http://dylanaraps.com/startpage 4 | 5 | - Links can be changed in the html file. 6 | - Colors can be changed in the css file. 7 | 8 | ![scrot](https://ipfs.pics/ipfs/QmefqoNgvgV2QWJpvKuzx8hxaD5kFiRUB2Nt8AtpAtnh58) 9 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | home 5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 |

Home

13 |
14 | 20 |
21 | 27 |
28 | 35 |
36 | 37 | 38 | -------------------------------------------------------------------------------- /scss/style.scss: -------------------------------------------------------------------------------- 1 | /* Startpage Css 2 | By Dylan Araps */ 3 | 4 | // Import Colors 5 | @import '/home/dylan/.cache/wal/colors.scss'; 6 | 7 | // Variables 8 | $width: 400px; 9 | 10 | html, 11 | body, 12 | ul { 13 | margin: 0; 14 | padding: 0; 15 | } 16 | 17 | body { 18 | background: $color0; 19 | height: 100%; 20 | width: 100%; 21 | } 22 | 23 | main { 24 | display: block; 25 | font-family: 'Noto Sans'; 26 | left: 50%; 27 | position: absolute; 28 | top: 45%; 29 | transform: translate(-50%,-50%); 30 | width: 100%; 31 | } 32 | 33 | h1 { 34 | color: $color1; 35 | display: block; 36 | margin: 0 auto; 37 | text-align: left; 38 | width: $width; 39 | } 40 | 41 | hr { 42 | border: 0; 43 | border-top: 1px solid $color6; 44 | opacity: .4; 45 | width: $width; 46 | } 47 | 48 | ul { 49 | display: block; 50 | margin: 0 auto; 51 | width: $width; 52 | } 53 | 54 | li { 55 | color: $color5; 56 | display: inline-block; 57 | font-size: 1.2em; 58 | line-height: 1.5; 59 | list-style: none; 60 | margin: 5px; 61 | } 62 | 63 | a { 64 | color: $color4; 65 | text-decoration: none; 66 | transition: .2s; 67 | 68 | &:hover { 69 | color: $color8; 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | /* Startpage Css 2 | By Dylan Araps */ 3 | html, 4 | body, 5 | ul { 6 | margin: 0; 7 | padding: 0; 8 | } 9 | 10 | body { 11 | background: #061E26; 12 | height: 100%; 13 | width: 100%; 14 | } 15 | 16 | main { 17 | display: block; 18 | font-family: 'Noto Sans'; 19 | left: 50%; 20 | position: absolute; 21 | top: 45%; 22 | transform: translate(-50%, -50%); 23 | width: 100%; 24 | } 25 | 26 | h1 { 27 | color: #5C5D5B; 28 | display: block; 29 | margin: 0 auto; 30 | text-align: left; 31 | width: 400px; 32 | } 33 | 34 | hr { 35 | border: 0; 36 | border-top: 1px solid #658389; 37 | opacity: .4; 38 | width: 400px; 39 | } 40 | 41 | ul { 42 | display: block; 43 | margin: 0 auto; 44 | width: 400px; 45 | } 46 | 47 | li { 48 | color: #C99664; 49 | display: inline-block; 50 | font-size: 1.2em; 51 | line-height: 1.5; 52 | list-style: none; 53 | margin: 5px; 54 | } 55 | 56 | a { 57 | color: #C97549; 58 | text-decoration: none; 59 | transition: .2s; 60 | } 61 | 62 | a:hover { 63 | color: #666666; 64 | } 65 | --------------------------------------------------------------------------------