-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Now the module documentation is under `/docs`
- Loading branch information
Showing
6 changed files
with
71 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>hevi</title> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta name="description" content="A hex viewer"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> | ||
<link rel="preload" href="https://fonts.googleapis.com/css?family=Fira+Sans&display=swap" as="style" onload="this.onload=null;this.rel='stylesheet'"> | ||
<noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Fira+Sans&display=swap"></noscript> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
<body> | ||
<h1>hevi</h1> | ||
<p class="subtitle">A hex viewer</p> | ||
<img src="example.png" style="width: 50%;"></img> | ||
<div> | ||
<a class="button" href="https://github.com/Arnau478/hevi"><i class="fa fa-github"></i> github</a> | ||
<a class="button" href="docs"><i class="fa fa-book"></i> docs</a> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
body { | ||
background-color: #121212; | ||
margin: 0; | ||
padding: 0; | ||
text-align: center; | ||
color: #FFFFFF; | ||
font-family: "Fira Sans"; | ||
padding: 50px; | ||
} | ||
|
||
.subtitle { | ||
color: #CCCCCC; | ||
} | ||
|
||
.button { | ||
background-color: #FFFFFF; | ||
color: #121212; | ||
border: 3px solid #FFFFFF; | ||
font-family: "Fira Sans"; | ||
text-decoration: none; | ||
font-size: 16px; | ||
border-radius: 4px; | ||
padding: 5px; | ||
transition: 0.25s; | ||
} | ||
|
||
.button:hover { | ||
background-color: #121212; | ||
color: #FFFFFF; | ||
} |