Skip to content

Commit

Permalink
0.0.6 [WIP] init docs
Browse files Browse the repository at this point in the history
  • Loading branch information
LReg committed Oct 9, 2024
1 parent 7f98459 commit d0d5f45
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 43 deletions.
6 changes: 0 additions & 6 deletions docs/_config.yml

This file was deleted.

37 changes: 0 additions & 37 deletions docs/_layouts/default.html

This file was deleted.

23 changes: 23 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!doctype html>
<html lang="de">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta charset="utf-8">
<title>Authelia Blueprint Documentation</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<nav>
<span>Authelia Blueprint Documentation</span>
</nav>
<main>

</main>
<aside>

</aside>
</body>
</html>
28 changes: 28 additions & 0 deletions docs/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
background-color: #f4f4f4;
color: #333;
line-height: 1.6;
}
nav {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 8rem;
display: flex;
justify-content: center;
align-items: center;
}
nav span {
font-size: 4rem;
font-weight: 700;
color: #333;
margin-right: 1rem;
cursor: pointer;
}

0 comments on commit d0d5f45

Please sign in to comment.