Working login + connection list UI stub.

This commit is contained in:
Michael Jumper
2011-08-11 09:57:25 -07:00
parent e5e34a0367
commit 9ef50a1ce7
4 changed files with 206 additions and 11 deletions

View File

@@ -18,7 +18,7 @@
*/
body {
background: black;
background: gray;
font-family: sans-serif;
padding: 0;
margin: 0;
@@ -114,7 +114,7 @@ div#login-dialog #login-fields img.logo {
float: left;
}
div#login-ui #version-dialog {
div#version-dialog {
position: fixed;
right: 0;
bottom: 0;
@@ -136,3 +136,57 @@ img#license {
float: right;
margin: 2px;
}
div#connection-list-ui {
background: #BCA;
}
div#connection-list-ui table {
width: 100%;
border-collapse: collapse;
}
div#connection-list-ui table thead {
background: #9A8;
}
div#connection-list-ui table thead tr {
border-top: 1px solid #676;
border-bottom: 1px solid gray;
}
div#connection-list-ui table tbody {
background: white;
}
div#connection-list-ui table tbody tr {
border-top: 1px solid gray;
border-bottom: 1px solid gray;
}
div#connection-list-ui table td {
padding: 0.25em;
text-align: center;
}
div#connection-list-ui table tbody tr:nth-child(even) { background: #CCC; }
div#connection-list-ui table tbody tr:nth-child(odd) { background: #EEE; }
div#connection-list-ui table td.description {
text-align: left;
}
div#connection-list-ui h1 {
margin: 0;
padding: 0.5em;
font-size: 2em;
vertical-align: middle;
text-align: center;
}
div#connection-list-ui img {
vertical-align: middle;
}