Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
im-mi committed Jun 3, 2018
0 parents commit 5cbc16c
Show file tree
Hide file tree
Showing 6 changed files with 136 additions and 0 deletions.
37 changes: 37 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<div align="center">
<a href="https://github.com/im-mi/KoiCatalog" target="_blank">
<img alt="KoiCatalog" src="Resources/Media/Logo.png" width="452" height="94">
</a>
<p>A card manager for Koikatu. View, search, and sort your collection of character cards.</p>
</div>



<h2>Screenshots</h2>

<p>
<a href="Resources/Media/Screenshots/1.png" target="_blank"><img alt="Screenshot 1" src="Resources/Media/Screenshots/1.png" width="200" height="150"></a>
<a href="Resources/Media/Screenshots/2.png" target="_blank"><img alt="Screenshot 2" src="Resources/Media/Screenshots/2.png" width="200" height="150"></a>
</p>



<h2>Download</h2>

<p>
<a href="https://github.com/im-mi/KoiCatalog/releases" target="_blank">Download from GitHub</a>
</p>



<h2>System Requirements</h2>

<p>.NET Framework 4.6.1*</p>
<ul>
<li><a href="https://www.microsoft.com/en-us/download/details.aspx?id=49981" target="_blank">Web installer</a></li>
<li><a href="https://www.microsoft.com/en-us/download/details.aspx?id=49982" target="_blank">Offline installer</a></li>
</ul>

<p>
<sub><i>* May already be installed with recent Windows updates.</i></sub>
</p>
Binary file added Resources/Media/Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/Media/Screenshots/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/Media/Screenshots/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
67 changes: 67 additions & 0 deletions Resources/Media/Style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
html, body
{
height: 100%;
}
html
{
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
display: table;
margin: auto;
}
body
{
box-sizing: border-box;
color: #606060;
background: white;
padding: 20px 40px;
width: 800px;
display: table-cell;
}
sub
{
font-size: 0.7em;
}
h1, h2, h3, h4, h5, h6
{
font-family: "Segoe UI Light", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-weight: 600;
color: #647687;
margin-bottom: 0;
}
h2
{
font-size: 30px;
}
h2:after
{
margin-top: 4px;
content: ' ';
display: block;
border-top: 1px solid #E0E0E0;
}
h3
{
font-size: 20px;
}
ul
{
margin-top: 0;
}
a
{
color: #0066CC;
text-decoration: none;
}
a:hover
{
color: #FF0000;
}
.header
{
text-align: center;
}
.logo
{
width: 100%;
max-width: 452px;
}
32 changes: 32 additions & 0 deletions Where is the program.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Where is the program? - KoiCatalog</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="Resources/Media/Style.css">
</head>

<body>
<div class="header">
<a href="https://github.com/im-mi/KoiCatalog" target="_blank">
<img class="logo" alt="KoiCatalog" src="Resources/Media/Logo.png">
</a>
<p>A card manager for Koikatu. View, search, and sort your collection of character cards.</p>
</div>



<h2>Where is the program?</h2>

<p>If you downloaded this instead of one of the releases, then head over to the <a href="https://github.com/im-mi/KoiCatalog/releases" target="_blank">releases</a> page and download from there.</p>



<h2>More Information</h2>

<p>
<a href="https://github.com/im-mi/KoiCatalog" target="_blank">KoiCatalog on GitHub</a>
</p>

</body>
</html>

0 comments on commit 5cbc16c

Please sign in to comment.