Update README.md and remove unneeded files
This commit is contained in:
parent
49da709bb9
commit
452f2d4490
4 changed files with 2 additions and 195 deletions
|
@ -1,6 +1,6 @@
|
||||||
# snowcake-website
|
# My website
|
||||||
|
|
||||||
Hello there, and welcome to the snowcake-website repository, the repository containing the source code for my personal website at [snowcake.me](https://snowcake.me)
|
Hello there, and welcome to the repository containing the source code for my personal website at [snowcake.me](https://snowcake.me)
|
||||||
|
|
||||||
## Licensing
|
## Licensing
|
||||||
|
|
||||||
|
|
118
main_theme.css
118
main_theme.css
|
@ -1,118 +0,0 @@
|
||||||
/* Copyright © 2022-2023 Lilium_Snow */
|
|
||||||
/* See the LICENSE file at https://git.snowcake.me/primrose/snowcake-website/src/branch/main/LICENSE for copyright and licensing details */
|
|
||||||
|
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: quicksand-light;
|
|
||||||
src: url(https://snowcake.me/assets/fonts/Quicksand-Light.ttf);
|
|
||||||
}
|
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: quicksand-regular;
|
|
||||||
src: url(https://snowcake.me/assets/fonts/Quicksand-Regular.ttf);
|
|
||||||
}
|
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: quicksand-medium;
|
|
||||||
src: url(https://snowcake.me/assets/fonts/Quicksand-Medium.ttf);
|
|
||||||
}
|
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: quicksand-semibold;
|
|
||||||
src: url(https://snowcake.me/assets/fonts/Quicksand-SemiBold.ttf);
|
|
||||||
}
|
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: quicksand-bold;
|
|
||||||
src: url(https://snowcake.me/assets/fonts/Quicksand-Bold.ttf);
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
background-image: radial-gradient(circle, #ff99cc, #ff99aa, #ffaa99);
|
|
||||||
color: #404040;
|
|
||||||
text-align: center;
|
|
||||||
font-family: quicksand-regular;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:link {
|
|
||||||
color: #404040;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:visited {
|
|
||||||
color: #404040;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
|
||||||
color: #404040;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:active {
|
|
||||||
color: #404040;
|
|
||||||
}
|
|
||||||
|
|
||||||
.content {
|
|
||||||
margin: auto;
|
|
||||||
width: 60%;
|
|
||||||
background-color: rgba(255, 255, 255, 0.4);
|
|
||||||
border: 2px solid #ffffff;
|
|
||||||
border-radius: 15px;
|
|
||||||
padding: 20px 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button {
|
|
||||||
background-color: rgba(255, 255, 255, 0.4);
|
|
||||||
border-radius: 15px;
|
|
||||||
border: 2px solid #ffffff;
|
|
||||||
padding: 10px 10px;
|
|
||||||
text-decoration: none;
|
|
||||||
display: inline-block;
|
|
||||||
font-size: 15px;
|
|
||||||
margin: 4px 2px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
|
||||||
body {
|
|
||||||
background-image: radial-gradient(circle, #8e009f, #6b0077, #470050);
|
|
||||||
color: #ffffff;
|
|
||||||
text-align: center;
|
|
||||||
font-family: quicksand-regular;
|
|
||||||
}
|
|
||||||
|
|
||||||
.content {
|
|
||||||
margin: auto;
|
|
||||||
width: 60%;
|
|
||||||
background-color: rgba(0, 0, 0, 0.4);
|
|
||||||
border: 2px solid #ffffff;
|
|
||||||
border-radius: 15px;
|
|
||||||
padding: 20px 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button {
|
|
||||||
background-color: rgba(0, 0, 0, 0.4);
|
|
||||||
border-radius: 15px;
|
|
||||||
border: 2px solid #ffffff;
|
|
||||||
padding: 10px 10px;
|
|
||||||
text-decoration: none;
|
|
||||||
display: inline-block;
|
|
||||||
font-size: 15px;
|
|
||||||
margin: 4px 2px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:link {
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:visited {
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:active {
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,33 +0,0 @@
|
||||||
<!--Copyright © 2022-2023 Lilium_Snow-->
|
|
||||||
<!--See the LICENSE file at https://git.snowcake.me/primrose/snowcake-website/src/branch/main/LICENSE for copyright and licensing details-->
|
|
||||||
|
|
||||||
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en-US">
|
|
||||||
<head>
|
|
||||||
<title>Mirrors - Snowcake</title>
|
|
||||||
<link rel="icon" type="image/x-icon" href="https://snowcake.me/assets/images/favicon.png">
|
|
||||||
<link rel="stylesheet" href="https://snowcake.me/main_theme.css">
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<h1>Mirrors</h1>
|
|
||||||
<div>
|
|
||||||
<a href="https://snowcake.me/" class="button">🏠 Back to Home</a>
|
|
||||||
</div>
|
|
||||||
<br>
|
|
||||||
<br>
|
|
||||||
<div class="content">
|
|
||||||
<h2>About this Mirror</h2>
|
|
||||||
<p>This mirror is located in the northeastern region of the United States, with 1 GB/s upload speeds. It hosts mirrors of various software projects, and all mirrored projects are updated by a cron job daily at 00:00 EST.</p>
|
|
||||||
<p>To report problems with this mirror, please send an email to primrose[at]snowcake[dot]me. I will respond as soon as I can.</p>
|
|
||||||
<h2>Mirrored Projects</h2>
|
|
||||||
<p>1. <a href="/linuxmint-iso">Linux Mint</a> - Install images (no packages)</p>
|
|
||||||
<p>2. <a href="/archlinux">Arch Linux</a> - Distribution packages and install images</p>
|
|
||||||
</div>
|
|
||||||
<br>
|
|
||||||
<br>
|
|
||||||
<br>
|
|
||||||
<img src="https://snowcake.me/assets/images/mirrors_footer.svg" width="350px" height="350px">
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,42 +0,0 @@
|
||||||
<!--Copyright © 2022-2023 Lilium_Snow-->
|
|
||||||
<!--See the LICENSE file at https://git.snowcake.me/primrose/snowcake-website/src/branch/main/LICENSE for copyright and licensing details-->
|
|
||||||
|
|
||||||
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en-US">
|
|
||||||
<head>
|
|
||||||
<title>Site Directory - Snowcake</title>
|
|
||||||
<link rel="icon" type="image/x-icon" href="/assets/images/favicon.png">
|
|
||||||
<link rel="stylesheet" href="/main_theme.css">
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<h1>Site Directory</h1>
|
|
||||||
<div>
|
|
||||||
<a href="/" class="button">🏠 Back to Home</a>
|
|
||||||
</div>
|
|
||||||
<br>
|
|
||||||
<br>
|
|
||||||
<div class="content">
|
|
||||||
<h2>Core</h2>
|
|
||||||
<p>1. <a href="/">Homepage</a> - The page you are first greeted with when you visit the site</p>
|
|
||||||
<br>
|
|
||||||
<p>2. <a href="/site-directory">Site Directory</a> - The page you are viewing right now<p>
|
|
||||||
<br>
|
|
||||||
<p>3. <a href="https://dash.snowcake.me">Server Info</a> - Live server statistics</p>
|
|
||||||
<br>
|
|
||||||
<p>4. <a href="https://blog.snowcake.me">Blog</a> - Rants, thoughts, and more</p>
|
|
||||||
<br>
|
|
||||||
<p>5. <a href="/media">Media</a> - A collection of random images, videos, and other miscellaneous files</p>
|
|
||||||
<br>
|
|
||||||
<p>6. <a href="https://git.snowcake.me">Forgejo</a> - My own Forgejo instance, which hosts projects that i'm working on, along with git mirrors of other projects</p>
|
|
||||||
<br>
|
|
||||||
<p>7. <a href="https://mirrors.snowcake.me">Mirrors</a> - A mirror of various software projects</p>
|
|
||||||
<br>
|
|
||||||
<p>8. <a href="https://snowcake.me/photography">Photography</a> - Photographs I have taken</p>
|
|
||||||
</div>
|
|
||||||
<br>
|
|
||||||
<br>
|
|
||||||
<br>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
Loading…
Add table
Add a link
Reference in a new issue