2017-09-26 05:40:53 -05:00
|
|
|
<!DOCTYPE html>
|
2017-09-27 00:43:50 -05:00
|
|
|
<html lang="en">
|
2017-09-26 05:40:53 -05:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2017-09-27 00:51:22 -05:00
|
|
|
<title>About Symphony</title>
|
2017-09-27 10:48:13 -05:00
|
|
|
<style>
|
|
|
|
html, body {
|
|
|
|
margin: 0;
|
|
|
|
height: 100%;
|
|
|
|
font-family: sans-serif;
|
|
|
|
}
|
|
|
|
.name {
|
|
|
|
flex: 1;
|
|
|
|
font-size: 1.3em;
|
|
|
|
padding: 10px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.version-text {
|
|
|
|
flex: 1;
|
|
|
|
font-size: 1em;
|
|
|
|
color: #2f2f2f;
|
|
|
|
}
|
|
|
|
|
|
|
|
.copyright-text {
|
|
|
|
flex: 1;
|
|
|
|
padding: 10px;
|
|
|
|
font-size: 0.6em;
|
|
|
|
color: #7f7f7f;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
text-align: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
padding-top: 20px
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
</style>
|
2017-09-26 05:40:53 -05:00
|
|
|
</head>
|
2017-09-27 10:48:13 -05:00
|
|
|
<body>
|
|
|
|
<div class="content">
|
|
|
|
<img class="logo" src="symphony-logo.png">
|
|
|
|
<span id="app-name" class="name">Symphony</span>
|
|
|
|
<span id="version" class="version-text"></span>
|
|
|
|
<span id="copyright" class="copyright-text"></span>
|
2017-09-26 05:40:53 -05:00
|
|
|
</div>
|
|
|
|
</body>
|
2017-09-27 00:51:22 -05:00
|
|
|
</html>
|