qutebrowser fixes

This commit is contained in:
Luke 2018-01-22 14:38:33 -07:00
parent 51ef581bde
commit 1f5431a22e
3 changed files with 43 additions and 1 deletions

View file

@ -1000,7 +1000,7 @@ c.qt.force_platform = None
## QtWebEngine to work with Nouveau drivers. This setting requires a ## QtWebEngine to work with Nouveau drivers. This setting requires a
## restart. ## restart.
## Type: Bool ## Type: Bool
c.qt.force_software_rendering = False c.qt.force_software_rendering = True
## Show a scrollbar. ## Show a scrollbar.
## Type: Bool ## Type: Bool

View file

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<link rel='stylesheet' type='text/css' href='style.css'>
<title>
Start Page
</title>
<div id="whole">
<div id="middle">
<h1>Welcome.</h1>
</div>
</div>
</html>

View file

@ -0,0 +1,24 @@
body {
color: #ddd;
background: url("../wall.png") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#middle{
border-radius: 24px;
float: left;
display: inline-block;
width: 161.803px;
height: 100px;
position: absolute;
top: 50%;
bottom: 50%;
left: 0;
right: 0;
margin: auto;
text-align: center;
background-color: rgba(20, 20, 20, 0.9);
}