diff options
Diffstat (limited to '.config/startpage')
| -rw-r--r-- | .config/startpage/startpage.html | 18 | ||||
| -rw-r--r-- | .config/startpage/style.css | 24 |
2 files changed, 42 insertions, 0 deletions
diff --git a/.config/startpage/startpage.html b/.config/startpage/startpage.html new file mode 100644 index 0000000..e6fb443 --- /dev/null +++ b/.config/startpage/startpage.html @@ -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> diff --git a/.config/startpage/style.css b/.config/startpage/style.css new file mode 100644 index 0000000..606c962 --- /dev/null +++ b/.config/startpage/style.css @@ -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); +} |
