Upload files to "/"

This commit is contained in:
mozols 2024-08-17 21:09:22 +03:00
commit fa89b2f294
5 changed files with 271 additions and 0 deletions

BIN
SourceCodePro-Regular.otf Normal file

Binary file not shown.

43
dl.html Normal file
View file

@ -0,0 +1,43 @@
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="/style.css" />
<title>downloads - maira.cc</title>
<link rel="shortcut icon" href="img/favicon.png" type="image/png">
</head>
<html lang="en">
<body>
<div class="top-menu">
<li class="subitem">
<a href="maira.cc">maira.cc</a>
</li>
<div class="item">
<li class="subitem">
<a href="maira.cc">home</a>
</li>
<li class="subitem">
<a href="blog.maira.cc">blog</a>
</li>
<li class="subitem">
<a href="dl.maira.cc">downloads</a>
</li>
<li class="subitem">
<a href="maira.cc/donate">donate</a>
</li>
</div>
</div>
<div class="line"></div>
<div class="body-text">
<h1>downloads catalogue</h1>
<input type="text" id="search" placeholder="Search...">
<p>coming soon...</p>
<!--<table id="catalogue">
soon...
</table>-->
</div>
</body>
</html>

40
donate.html Normal file
View file

@ -0,0 +1,40 @@
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="/style.css" />
<title>donate - maira.cc</title>
<link rel="shortcut icon" href="img/favicon.png" type="image/png">
</head>
<html lang="en">
<body>
<div class="top-menu">
<li class="subitem">
<a href="maira.cc">maira.cc</a>
</li>
<div class="item">
<li class="subitem">
<a href="maira.cc">home</a>
</li>
<li class="subitem">
<a href="blog.maira.cc">blog</a>
</li>
<li class="subitem">
<a href="dl.maira.cc">downloads</a>
</li>
<li class="subitem">
<a href="maira.cc/donate">donate</a>
</li>
</div>
</div>
<div class="line"></div>
<div class="body-text">
<h1>donate</h1>
<p>I really hate to ask for donations but at the same time I need the support. Not only does supporting me help me motivate to continue working on the website in general, but I need to pay for various projects that I have planned/want to do and basic infrastructure costs such as the domain itself. I would appreciate it with all my heart if someone donated even a breadcrumb. Thank you very much and I'm sorry once again for asking.</p>
<p>Bitcoin (BTC): <code>bc1qmxxrqk4zwr98e6d5502e7wdsa4fw6jhywsngr4</code></p>
<p>Monero (XMR): <code>4AjXTqrZ2upDtpEmJ714nXQ2zgJFQ5v9zQbV5iBq8QYaAZ5DpXDNo5YbNyEYNaW12P8RyT1CavfHoE1bNwotu9Jm8zoB3o5</code></p>
</div>
</body>
</html>

47
index.html Normal file
View file

@ -0,0 +1,47 @@
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="/style.css" />
<title>home - maira.cc</title>
<link rel="shortcut icon" href="img/favicon.png" type="image/png">
</head>
<html lang="en">
<body>
<div class="top-menu">
<li class="subitem">
<a href="maira.cc">maira.cc</a>
</li>
<div class="item">
<li class="subitem">
<a href="maira.cc">home</a>
</li>
<li class="subitem">
<a href="blog.maira.cc">blog</a>
</li>
<li class="subitem">
<a href="dl.maira.cc">downloads</a>
</li>
<li class="subitem">
<a href="maira.cc/donate">donate</a>
</li>
</div>
</div>
<div class="line"></div>
<div class="body-text">
<h1>welcome!</h1>
<p>Hello, my name is Maira and this is my personal webpage.</p>
<p>I am a Latvian girl who is mostly interested in making electronics (guitar pedals, amps, microcomputers, etc.)</p>
<p>I'm fluent in English, verbally fluent in Russian and B2 Spanish (Castellano). I'm also currently learning Swedish.</p>
<p>If you wish to contact me, you can do so at mairaoz[at]proton.me</p>
</div>
<div class="footer">
<a href="https://maira.cc/"><img src="img/maira.gif" alt="maira.cc"></a>
<a href="https://slonk.ing/"><img src="img/slonk.apng" alt="slonk"></a>
<a href="https://debian.org/"><img src="img/debian.gif" alt="Debian"></a>
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/"><img src="img/cc-by-nc-sa.gif" alt="CC BY-NC-SA"></a>
</div>
</body>
</html>

141
style.css Normal file
View file

@ -0,0 +1,141 @@
@font-face {
font-family: Quicksand;
font-weight: normal;
font-style: normal;
src: url(Quicksand-Regular.otf);
}
@font-face {
font-family: Quicksand;
font-weight: bold;
font-style: normal;
src: url(Quicksand-Bold.otf);
}
@font-face {
font-family: Quicksand;
font-weight: normal;
font-style: italic;
src: url(Quicksand-Italic.otf);
}
@font-face {
font-family: Quicksand;
font-weight: bold;
font-style: italic;
src: url(Quicksand-BoldItalic.otf);
}
@font-face {
font-family: SourceCodePro;
src: url(SourceCodePro-Regular.otf);
}
body {
text-rendering: optimizeLegibility;
background: #333;
color: #eeeeee;
}
.top-menu li {
display: inline;
height: 3rem;
padding-bottom: 50%;
}
.top-menu li:first-of-type {
/*padding-left: 2.5%;
padding-right: 23.1%;*/
width: 10%;
}
.top-menu .item {
text-align: right;
}
.top-menu .item .subitem {
padding-left: 20px;
padding-right: 20px;
}
.top-menu .subitem {
padding-left: 20px;
padding-right: 20px;
}
.top-menu a {
text-decoration: none;
font-size: 1.5rem;
font-family: 'Quicksand', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-weight: normal;
font-style: normal;
color: #eeeeee;
}
.line {
border-bottom: 0.5px solid;
display: block;
height: 1px;
}
.body-text {
padding-top: 2rem;
padding-left: 10rem;
padding-right: 10rem;
padding-bottom: 2rem;
background-color: #444;
}
.footer {
position: fixed;
left: 0;
right: 0;
bottom: 0;
width: 100%;
background-color: black;
color: white;
text-align: center;
}
h1 {
font-size: 3rem;
font-family: 'Quicksand', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-weight: bold;
font-style: normal;
}
h2 {
font-size: 2.3rem;
font-family: 'Quicksand', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-weight: normal;
font-style: normal;
}
p {
padding-left: 25px;
border-radius: 25px;
font-size: 1.3rem;
font-family: 'Quicksand', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-weight: normal;
font-style: normal;
}
a {
border-radius: 25px;
font-size: 1.3rem;
font-family: 'Quicksand', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-weight: normal;
font-style: normal;
color:lightskyblue
}
code {
padding:0 5px 2px;
line-height:1em;
background-color: #000000;
border-radius: 5px;
font-size: 1.2rem;
font-family: 'SourceCodePro', 'Courier New', Courier, monospace;
font-weight: normal;
font-style: normal;
}