Initial commit.
This commit is contained in:
commit
c519afd3f6
4
css/font-awesome.min.css
vendored
Normal file
4
css/font-awesome.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
fonts/FontAwesome.otf
Normal file
BIN
fonts/FontAwesome.otf
Normal file
Binary file not shown.
BIN
fonts/fontawesome-webfont.eot
Normal file
BIN
fonts/fontawesome-webfont.eot
Normal file
Binary file not shown.
2671
fonts/fontawesome-webfont.svg
Normal file
2671
fonts/fontawesome-webfont.svg
Normal file
File diff suppressed because it is too large
Load Diff
After Width: | Height: | Size: 434 KiB |
BIN
fonts/fontawesome-webfont.ttf
Normal file
BIN
fonts/fontawesome-webfont.ttf
Normal file
Binary file not shown.
BIN
fonts/fontawesome-webfont.woff
Normal file
BIN
fonts/fontawesome-webfont.woff
Normal file
Binary file not shown.
BIN
fonts/fontawesome-webfont.woff2
Normal file
BIN
fonts/fontawesome-webfont.woff2
Normal file
Binary file not shown.
60
index.html
Normal file
60
index.html
Normal 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>
|
Loading…
x
Reference in New Issue
Block a user