Add www folder.

This commit is contained in:
Florian Bruhin 2015-10-21 19:48:00 +02:00
parent daf81f5fcd
commit fabe53564f
7 changed files with 404 additions and 0 deletions

14
www/header.asciidoc Normal file
View File

@ -0,0 +1,14 @@
+++
<div id="headline">
<img class="qutebrowser-logo" src="icons/qutebrowser.svg" />
<div class="text">
<h1>qutebrowser</h1>
A keyboard-driven browser.
</div>
</div>
<div id="menu">
<a href="index.html">Home</a>
<a href="FAQ.html">FAQ</a>
<a href="https://www.github.com/The-Compiler/qutebrowser">GitHub</a>
</div>
+++

BIN
www/media/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

13
www/media/font.css Normal file
View File

@ -0,0 +1,13 @@
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
src: local('Open Sans'), local('OpenSans'), url(opensans.woff2) format('woff2');
}
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 700;
src: local('Open Sans Bold'), local('OpenSans-Bold'), url(opensans-bold.woff2) format('woff2');
}

Binary file not shown.

BIN
www/media/opensans.woff2 Normal file

Binary file not shown.

211
www/media/qutebrowser.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 21 KiB

166
www/qute.css Normal file
View File

@ -0,0 +1,166 @@
* {
margin: 0px 0px;
padding: 0px 0px;
}
body {
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
-webkit-text-size-adjust: none;
color: #333333;
}
#header {
display: none;
}
#headline {
background-color: #333333;
padding: 20px 20px;
overflow: auto;
color: #888;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
#headline .qutebrowser-logo {
display: block;
height: 70px;
float: left;
}
#headline .text {
float: right;
text-align: right;
}
#headline .text h1 {
color: #1e89c6;
border: none;
}
#headline .text {
color: #666666;
}
#menu {
padding: 0px 20px;
background-color: #555555;
color: #CCC;
overflow: auto;
margin-bottom: 10px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
#menu a {
color: #CCC;
text-decoration: none;
background-color: #555555;
padding: 10px 20px;
float: left;
}
#menu a:hover {
background-color: #1e89c6;
}
.sect1 {
padding: 10px 40px;
}
.sect2 {
padding: 10px 0px;
}
div.footnote {
padding: 10px 40px;
}
hr {
margin: 0px 40px;
color: #CCCCCC;
}
h1, h2, h3, h4, h5, h6 {
color: #0A396E;
margin-bottom: 10px;
border-bottom: 1px solid #CCCCCC;
}
.ulist {
padding-left: 20px;
margin-top: 10px;
}
#footer {
padding: 20px 40px;
border-top: 1px solid #CCCCCC;
color: #888888;
}
a {
color: #1e89c6;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
ol {
margin-left: 20px;
margin-top: 20px;
margin-bottom: 20px;
}
li {
margin-bottom: 10px;
}
.hdlist1 {
color: #0A396E;
margin-bottom: 10px;
margin-top: 10px;
border-bottom: 1px solid #CCCCCC;
}
@media screen and (max-width: 480px) {
#headline .qutebrowser-logo {
margin-left: auto;
margin-right: auto;
display: block;
width: 30%;
height: auto;
float: none;
}
#headline .text {
display: none;
}
#menu {
padding: 0px 0px;
background-color: #555555;
color: #CCC;
overflow: hidden;
width: 100%;
}
#menu a {
color: #CCC;
text-decoration: none;
background-color: #555555;
width: 100%;
padding: 10px 40px;
}
}
</style>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;">
<link href='media/font.css' rel='stylesheet' type='text/css'>
<link rel="icon" href="media/favicon.png" type="image/png">
<style>