12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <title>Release Note</title>
- <style type="text/css">
- body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {margin:0;padding:0;}
- table {border-collapse:collapse;border-spacing:0;}
- fieldset,img {border:0;}
- address,caption,cite,code,dfn,em,strong,th,var {font-style:normal;font-weight:normal;}
- ol,ul {list-style:none;}
- caption,th {text-align:left;}
- h1,h2,h3,h4,h5,h6 {font-size:100%;font-weight:normal;}
- q:before,q:after {content:'';}
- abbr,acronym {border:0;}
- html, body{margin:0; height: 100%;}
- body{margin: 0; padding: 0; color:#000; font-size:15px; font-family:arial, helvetica, clean, sans-serif,微軟正黑體; background: #326990;}
- ul, li { display: block;}
- a { text-decoration: none; color:blue; }
- a:hover{ text-decoration: none; }
- /*-select-*/
- select,input{ padding: 5px; margin: 2px; border-radius: 20px; border:0; background: #edf1f3; }
- input { padding:7px;}
- /*-table-*/
- .table{ width: 100%; word-break: break-all;}
- .table thead th { background: #f4f9fc; border-bottom: 2px solid #e9f0f4; font-size: 15px; font-weight: bold; text-align: center; line-height: 40px;}
- .table tbody td { padding:8px 3px; border-bottom:1px solid #ddd; border-bottom: 1px solid #e9f0f4;}
- .table .tr{ background: #f4fafd;}
- .table tr:hover { background-color: #FFFEEC;}
- .txtR{ text-align: right;}
- .txtC{text-align: center;}
- .txtL{text-align: left;}
- /*---all----*/
- #wrapper { width:1000px; margin:0 auto; height: 100%;}
- #content { background:#fff; color:#385263; margin-bottom: 20px;}
- #content .Top { height:5px; background: #68a3c9;}
- #content #title { height:65px; font-size: 24px;font-weight: bold; line-height: 60px; background: #f4f9fc; padding: 10px; }
- #content #rightContent { padding: 10px 10px 30px; }
- </style>
- </head>
- <body>
- <div id="wrapper">
- <div id="content">
- <div class="Top"></div>
- <div id="title">Firmware Header Builder</div>
- <div id="rightContent">
- <table class="table">
- <thead>
- <tr>
- <th width="150px">Version</th>
- <th width="150px">Release Date</th>
- <th width="150px">Owner</th>
- <th>Updated Items</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td class="txtC">0.0.1.0</td>
- <td class="txtC">2019.07.09</td>
- <td class="txtC">Jimmy</td>
- <td class="txtL">
- 1. [新版] 協定實作。<p>
- </td>
- </tr>
- <tr>
- <td class="txtC">1.0.2.0</td>
- <td class="txtC">2019.07.30</td>
- <td class="txtC">Jimmy</td>
- <td class="txtL">
- 1. [新增] 副檔名選擇功能。<p>
- 2. [新增] 映像檔選擇自動對應副檔名選擇功能。
- </td>
- </tr>
- </tbody>
- </table>
- </div><!--end of rightContent-->
- </div><!-- end of content-->
- </div><!--end of wrapper-->
- </body>
- </html>
|