1
0

Layout changes

This commit is contained in:
Scott E. Graves
2017-02-18 17:21:46 -06:00
parent 1f75127359
commit e0a44c9203
2 changed files with 75 additions and 31 deletions

View File

@@ -4,14 +4,20 @@
<meta http-equiv="X-UA-Compatible" content="IE=11" />
<style>
body {
background-color: lightgray;
width: 100%;
width: auto;
height: 100%;
padding: 0;
border: 0;
background: url('res://jpg/#1') no-repeat;
background-size: cover;
color: #c2c2c2;
margin: 0;
padding: 0;
}
html, body {
transition: background-color .5s;
background-color: #2b2b2b;
}
label {
margin: 0;
padding: 0;
@@ -19,9 +25,10 @@
}
h3 {
margin-bottom: 2px;
padding: 0;
margin: 0;
padding: 0 0 8px 0;
border: 0;
color: #6fb78f;
}
p {
@@ -30,16 +37,27 @@
}
div {
padding: 0;
margin: 0;
border: 0;
padding: 0;
width: auto;
}
div.box {
padding-top: 10px;
padding-right: 15px;
padding-left: 15px;
padding-bottom: 10px;
background-color: rgba(48, 46, 46, 0.7);
margin-bottom: 10px;
margin-top: 10px;
border: 1px solid #484745;
}
div.footer {
margin: 0 auto;
position: absolute;
bottom: 10px;
width: 98%;
width: 97%;
}
div.popup {
@@ -88,12 +106,37 @@
background-color: rgb(0, 0, 0); /* Fallback color */
background-color: rgba(0, 0, 0, 0.5);
}
.padded {
padding-top: 15px;
padding-right: 15px;
padding-left: 15px;
padding-bottom: 15px;
}
button {
background-color: #515151;
border: 1px solid #506b58;
color: white;
padding: 5px 5px;
text-align: center;
text-decoration: none;
display: inline-block;
cursor: pointer;
margin: 0 4px 0 0;
}
button:hover {
background-color: #858595;
}
</style>
</head>
<body id="CSiaDriveDlg">
<body id="CSiaDriveDlg" class="padded">
<div id="ID_DisabledOverlay" class="disabled_overlay" style="top: 0;left: 0;"></div>
<div id="ID_Body">
<div class="fill">
<div class="box">
<h3>Sia Information</h3>
<div style="float: right;">
<table>
@@ -195,37 +238,38 @@
</table>
</div>
<div id="ID_TabWindow" style="display: none" class="fill">
<h3>Receive Address</h3>
<label id="ID_WalletReceiveAddress"></label>
<div id="ID_ActiveTab"></div>
<div class="fill" style="padding: 0; margin: 0;">
<div id="ID_TabWindow" style="display: none">
<div class="box">
<h3>Receive Address</h3>
<label id="ID_WalletReceiveAddress"></label>
</div>
<div id="ID_ActiveTab" class="box"></div>
<div class="box">
<h3>Mounting</h3>
<p>Choose an available drive letter and click 'Mount'</p>
<table>
<tr>
<td style="text-align: left; vertical-align: top">
<select id="ID_MountDrives"></select>
<input id="ID_MountButton" type="button" value="Mount" />
<select id="ID_MountDrives"></select>&nbsp;
<button id="ID_MountButton" type="button">Mount</button>
</td>
</tr>
</table>
</div>
</div>
</div>
<div class="footer">
<table class="fill">
<tr>
<td style="width: 70px;text-align: left"><b>Height:</b></td>
<td id="ID_BlockHeight">...</td>
<td style="text-align: right; vertical-align: bottom">
<button style="width: 100px" id="ButtonOK">OK</button>
<button style="width: 100px" id="ButtonCancel">Exit</button>
</td>
</tr>
</table>
</div>
<div class="footer">
<table class="fill">
<tr>
<td style="width: 70px;text-align: left"><b>Height:</b></td>
<td id="ID_BlockHeight">...</td>
<td style="text-align: right; vertical-align: bottom">
<button style="width: 100px" id="ButtonOK">OK</button>
<button style="width: 100px" id="ButtonCancel">Exit</button>
</td>
</tr>
</table>
</div>
<div class="popup" style="display: none" id="ID_Edit_Renter_Popup">

Binary file not shown.