├── LICENSE
├── README.md
├── assets
├── Kyok-medium.otf
├── background.png
├── favicon.svg
└── nazrin.png
├── colors.css
├── index.html
├── main.css
└── previews
├── narrow.png
└── wide.png
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2024 elenapan
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 | This is a simple startpage featuring [Nazrin](https://en.touhouwiki.net/wiki/Nazrin) from the [Touhou Project](https://en.touhouwiki.net/wiki/Touhou_Wiki).
4 |
5 | It is written in pure HTML & CSS without JavaScript.
6 |
7 | ## Previews
8 |
9 | Wide | Narrow
10 | :-------------------------:|:-------------------------:
11 |  | 
12 |
13 | ## Assets
14 | - [Nazrin art](https://danbooru.donmai.us/posts/6379868) (removed the red background)
15 | - [City background](https://unsplash.com/photos/an-aerial-view-of-a-city-at-night-JBkwaYMuhdc) (edited)
16 | - [Kyok font](https://www.1001fonts.com/kyok-font.html)
17 |
--------------------------------------------------------------------------------
/assets/Kyok-medium.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elenapan/startpage/455b56243e9419b8366e2bb480fe59deb2e51628/assets/Kyok-medium.otf
--------------------------------------------------------------------------------
/assets/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elenapan/startpage/455b56243e9419b8366e2bb480fe59deb2e51628/assets/background.png
--------------------------------------------------------------------------------
/assets/favicon.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/assets/nazrin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elenapan/startpage/455b56243e9419b8366e2bb480fe59deb2e51628/assets/nazrin.png
--------------------------------------------------------------------------------
/colors.css:
--------------------------------------------------------------------------------
1 | :root {
2 | --background: #101319;
3 | --foreground: #f4f3ee;
4 | --color0: #171b24;
5 | --color1: #E34F4F;
6 | --color2: #69bfce;
7 | --color3: #e37e4f;
8 | --color4: #5679E3;
9 | --color5: #956dca;
10 | --color6: #5599E2;
11 | --color7: #f4f3ee;
12 | --color8: #3A435A;
13 | --color9: #DE2B2B;
14 | --color10: #56B7C8;
15 | --color11: #DE642B;
16 | --color12: #3E66E0;
17 | --color13: #885AC4;
18 | --color14: #3F8CDE;
19 | --color15: #DDDBCF;
20 | }
21 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |