mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 11:46:38 +08:00
commit
3844a5b82d
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,3 +0,0 @@
|
|||
docs/.jekyll-metadata
|
||||
docs/_site
|
||||
docs/Gemfile.lock
|
3
docs/.gitignore
vendored
Normal file
3
docs/.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
.jekyll-metadata
|
||||
_site
|
||||
Gemfile.lock
|
|
@ -1 +1,8 @@
|
|||
footer
|
||||
<footer class="nav-footer wrap">
|
||||
<div class="nav-refs">
|
||||
<a href="https://github.com/larshp/abapGit">
|
||||
<span class="mega-octicon octicon-mark-github"></span>
|
||||
</a>
|
||||
</div>
|
||||
<footer>
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<head>
|
||||
<meta charset="utf-8">
|
||||
<link rel="shortcut icon" type="image/png" href="/favicon.png">
|
||||
<link rel="stylesheet" href="main.css">
|
||||
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/octicons/4.4.0/font/octicons.min.css">
|
||||
<title>{% if page.title %}{{ site.title }} - {{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
|
||||
</head>
|
|
@ -1,3 +1,5 @@
|
|||
<div id="header">
|
||||
<img src="img/logo.svg" height="50"><span class="page_title"> ► Documentation</span>
|
||||
<div class="page-head">
|
||||
<div class="wrap">
|
||||
<a href="/"><img class="head-logo" src="img/logo.svg" height="40" alt="abapGit"></a><span class="head-title">abapGit documentation</span>
|
||||
</div>
|
||||
</div>
|
|
@ -3,7 +3,7 @@
|
|||
{% include head.html %}
|
||||
<body>
|
||||
{% include header.html %}
|
||||
<div class="container">
|
||||
<div class="container wrap">
|
||||
<div class="nav">
|
||||
{% include navigation.html %}
|
||||
</div>
|
||||
|
|
BIN
docs/favicon.png
Normal file
BIN
docs/favicon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 764 B |
|
@ -1,6 +1,7 @@
|
|||
body {
|
||||
font-family: Arial,Helvetica,sans-serif;
|
||||
background: #E8E8E8;
|
||||
background: #F8F8F8;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
a, a:visited {
|
||||
|
@ -13,10 +14,16 @@ a:hover, a:active {
|
|||
text-decoration: underline;
|
||||
}
|
||||
|
||||
h1, h2, h3 {
|
||||
margin: 10px 0;
|
||||
font-family: inherit;
|
||||
font-weight: bold;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.container {
|
||||
width: 1000px;
|
||||
padding: 0.5em 1em;
|
||||
background-color: #f2f2f2;
|
||||
padding-top: 1em;
|
||||
padding-bottom: 1em;
|
||||
}
|
||||
|
||||
.container:after {
|
||||
|
@ -28,17 +35,54 @@ a:hover, a:active {
|
|||
.nav {
|
||||
float: left;
|
||||
width: 300px;
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.content {
|
||||
float: right;
|
||||
width: 100%;
|
||||
max-width: 700px;
|
||||
max-width: 650px;
|
||||
}
|
||||
|
||||
.page_title {
|
||||
.content img {
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
}
|
||||
|
||||
.page-head {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
background-color: #E8E8E8;
|
||||
padding-top: 8px;
|
||||
padding-bottom: 8px;
|
||||
}
|
||||
|
||||
.head-title {
|
||||
font-weight: bold;
|
||||
font-size: 22pt;
|
||||
color: #bbb;
|
||||
padding-left: 0.4em;
|
||||
position: absolute;
|
||||
bottom: 12px;
|
||||
}
|
||||
|
||||
.wrap {
|
||||
max-width: 960px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
|
||||
footer.nav-footer {
|
||||
padding-top: 1em;
|
||||
padding-bottom: 1em;
|
||||
}
|
||||
|
||||
.nav-refs {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.nav-refs a {
|
||||
color: #808080;
|
||||
}
|
Loading…
Reference in New Issue
Block a user