Skip to content

Commit

Permalink
finalise home page
Browse files Browse the repository at this point in the history
  • Loading branch information
gsdenys committed Dec 14, 2022
1 parent a65366a commit 20b754f
Show file tree
Hide file tree
Showing 8 changed files with 71 additions and 9 deletions.
4 changes: 3 additions & 1 deletion docs/_coverpage.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<!-- docs/_sidebar.md -->

![logo](_media/icon.png)
<!-- ![logo](_media/icon.png) -->

<span class="icon-cafe logo"></span>

# PDGEN <small>1.0.0</small>

Expand Down
Binary file modified docs/_media/bg.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 30 additions & 0 deletions docs/font.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
@font-face {
font-family: 'icomoon';
src: url('fonts/icomoon.eot?czmjk9');
src: url('fonts/icomoon.eot?czmjk9#iefix') format('embedded-opentype'),
url('fonts/icomoon.ttf?czmjk9') format('truetype'),
url('fonts/icomoon.woff?czmjk9') format('woff'),
url('fonts/icomoon.svg?czmjk9#icomoon') format('svg');
font-weight: normal;
font-style: normal;
font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
/* use !important to prevent issues with browser extensions that change fonts */
font-family: 'icomoon' !important;
speak: never;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;

/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

.icon-cafe:before {
content: "\e900";
}
Binary file added docs/fonts/icomoon.eot
Binary file not shown.
11 changes: 11 additions & 0 deletions docs/fonts/icomoon.svg
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 docs/fonts/icomoon.ttf
Binary file not shown.
Binary file added docs/fonts/icomoon.woff
Binary file not shown.
35 changes: 27 additions & 8 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -1,36 +1,55 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<title>Document</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
<link rel="stylesheet" href="font.css">
<style>
.cover {
background-image: url(_media/bg.jpeg) !important;
background-repeat: no-repeat !important;
background-size: 100% 100vh !important;
}
section.cover .cover-main>p:last-child a {
border: 1px solid #42b983 !important;
border-color: var(--theme-color,#42b983) !important;
}
}

.logo {
color: green;
font-size: 4em;
}

.anchor span {
color: #008001;
font-weight: bold;
}

section.cover .cover-main>p:last-child a:last-child {
background-color: #008001 !important;
}

section.cover .cover-main>p:last-child a {
border: 1px solid #008001 !important;
border-color: #008001 !important;
}
</style>
</head>

<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'PDGEN',
repo: '',
loadNavbar: true,
subMaxLevel: 3,
coverpage: true
coverpage: true,
onlyCover: true,
}
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
</body>
</html>

</html>

0 comments on commit 20b754f

Please sign in to comment.