annotate projects.html @ 47:f85e7261bc0f

everything *should* be the same everywhere now committer: GitHub <noreply@github.com>
author Paper <37962225+mrpapersonic@users.noreply.github.com>
date Thu, 28 Jul 2022 20:37:17 -0400
parents 44b4ca6897f4
children 65a2123aaf04
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
33
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
1 <!DOCTYPE html>
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
2 <head>
42
8051fdef82da Downgrade to bootstrap 2.3.2
Paper <mrpapersonic@gmail.com>
parents: 36
diff changeset
3 <link href="https://maxcdn.bootstrapcdn.com/bootstrap/2.3.2/css/bootstrap.min.css" rel="stylesheet" media="screen">
8051fdef82da Downgrade to bootstrap 2.3.2
Paper <mrpapersonic@gmail.com>
parents: 36
diff changeset
4 <link rel="shortcut icon" type="image/x-icon" href="favicon.ico?">
8051fdef82da Downgrade to bootstrap 2.3.2
Paper <mrpapersonic@gmail.com>
parents: 36
diff changeset
5 <!-- <script src="https://code.jquery.com/jquery.js"></script>
8051fdef82da Downgrade to bootstrap 2.3.2
Paper <mrpapersonic@gmail.com>
parents: 36
diff changeset
6 <script src="js/bootstrap/js/bootstrap.min.js"></script> -->
35
fbd0901ec2d8 Update projects.html
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents: 33
diff changeset
7 <title>Projects - Paper's website</title>
33
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
8 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
9 <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
10 <style>
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
11 @import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300&display=swap');
47
f85e7261bc0f everything *should* be the same everywhere now
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents: 46
diff changeset
12 .navbar {
f85e7261bc0f everything *should* be the same everywhere now
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents: 46
diff changeset
13 font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
f85e7261bc0f everything *should* be the same everywhere now
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents: 46
diff changeset
14 text-align: left; /* Override body text align */
f85e7261bc0f everything *should* be the same everywhere now
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents: 46
diff changeset
15 }
33
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
16 body {
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
17 background-size: cover;
36
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents: 35
diff changeset
18 background: url("blueforest.png") no-repeat center center fixed;
33
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
19 color: white;
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
20 font-family: 'Source Sans 3', sans-serif;
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
21 text-align: center;
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
22 text-shadow: 5px 0 10px rgba(0, 0, 0, 0.5);
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
23 }
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
24 div.box {
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
25 box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5) inset;
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
26 color: white;
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
27 left: 0;
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
28 margin: 1% auto;
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
29 max-width: 500px;
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
30 padding: 10px;
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
31 right: 0;
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
32 text-align: center;
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
33 top: 50%;
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
34 }
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
35 .poop {
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
36 display: block-inline;
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
37 color: yellow;
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
38 background: radial-gradient(ellipse, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.0) 75%);
42
8051fdef82da Downgrade to bootstrap 2.3.2
Paper <mrpapersonic@gmail.com>
parents: 36
diff changeset
39 box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
33
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
40 text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
41 }
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
42 </style>
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
43 </head>
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
44 <body>
45
e44fb9a05998 why does this work?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents: 44
diff changeset
45 <div class="navbar-wrapper">
46
44b4ca6897f4 ok container was the fix and i'm just dumb
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents: 45
diff changeset
46 <div class="container" style="width: 98%;margin-top:1%;">
45
e44fb9a05998 why does this work?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents: 44
diff changeset
47 <div class="navbar navbar-inverse" style="box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5)">
e44fb9a05998 why does this work?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents: 44
diff changeset
48 <div class="navbar-inner">
e44fb9a05998 why does this work?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents: 44
diff changeset
49 <a class="brand" href="#">Paper's website</a>
e44fb9a05998 why does this work?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents: 44
diff changeset
50 <ul class="nav">
e44fb9a05998 why does this work?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents: 44
diff changeset
51 <li><a href="./">Home</a></li>
e44fb9a05998 why does this work?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents: 44
diff changeset
52 <li><a href="music.html">Music</a></li>
e44fb9a05998 why does this work?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents: 44
diff changeset
53 <li class="active"><a href="#">Projects</a></li>
e44fb9a05998 why does this work?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents: 44
diff changeset
54 <li><a href="blog/">Blog</a></li>
e44fb9a05998 why does this work?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents: 44
diff changeset
55 </ul>
e44fb9a05998 why does this work?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents: 44
diff changeset
56 </div>
e44fb9a05998 why does this work?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents: 44
diff changeset
57 </div>
e44fb9a05998 why does this work?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents: 44
diff changeset
58 </div>
e44fb9a05998 why does this work?
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents: 44
diff changeset
59 </div>
33
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
60 <h1>Projects</h1>
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
61 <div class="box" style="background-color: rgba(0, 128, 0, 0.5);">
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
62 <h1>msvpvf</h1>
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
63 <p>msvpvf is a tool used to "downgrade" VEGAS Pro project files, written entirely in C. It has no runtime libraries, making it incredibly lightweight. On macOS, the CLI compiles to 50 KB, and on Windows the GUI app is only 19 KB.</p>
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
64 <p><a class="poop" href="https://github.com/mrpapersonic/msvpvf/releases/latest">Download</a></p>
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
65 </div>
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
66 <div class="box" style="background-color: rgba(0, 128, 0, 0.5);">
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
67 <h1>utagoe30en</h1>
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
68 <p>A project to translate <a class="poop" href="https://www.vector.co.jp/soft/dl/win95/art/se127635.html">Utagoe</a>, an app that extracts vocals from songs, into English</p>
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
69 <p><a class="poop" href="https://github.com/mrpapersonic/utagoe30en/releases/latest">Download</a></p>
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
70 </div>
00a9eeb901ed Add projects tab
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
71 </body>