Initial commit.

This commit is contained in:
Jonathan Bernard
2016-11-17 18:28:17 -06:00
commit c519afd3f6
8 changed files with 2735 additions and 0 deletions
+4
View File
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 434 KiB

Binary file not shown.
Binary file not shown.
Binary file not shown.
+60
View File
@@ -0,0 +1,60 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Uestibulum Greeter</title>
<link rel=stylesheet href=css/font-awesome.min.css >
<style type="text/css">
* { margin: 0; padding: 0; }
#bg {
position: fixed;
width: 100%;
display: block;
bottom: 0;
right: 0;
z-index: -1;
}
#power-panel {
position: absolute;
bottom: 2em;
right: 2em;
cursor: pointer;
}
#power-options {
background: rgba(0,0,0, 0.3);
opacity: 0;
transition: 1s;
}
#power-options.visible { opacity: 1; }
#power-options ul {
list-style: none;
}
</style>
<script type="application/javascript">
funciton showPowerOptions() {
}
</script>
</head>
<body>
<img id=bg src="bg.jpg">
<div id=power-panel>
<div id=power-button onclick='showPowerOptions()'><i class="fa fa-power-off fa-3x"></i></div>
<div id=power-options>
<ul>
<li><i class='fa fa-3x fa-moon-o'></i> Suspend</li>
<li><i class='fa fa-3x fa-refresh'></i> Restart</li>
<li><i class='fa fa-3x fa-power-off'></i> Shutdown</li>
</ul>
</div>
</div>
</body>
</html>