Skip to content

Commit

Permalink
add qa box entry
Browse files Browse the repository at this point in the history
  • Loading branch information
ssysm committed Feb 4, 2018
1 parent 2979347 commit fbeea37
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 7 deletions.
11 changes: 10 additions & 1 deletion client/src/app/view/about/about.component.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
.introh1{
color: #23b1f7;
}
.intro{
font-size: large;
font-family: "微软雅黑",-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.blockquote{
border-left:5px solid #eee
border-left:5px solid #eee;
font-size: large;
}
.qBox{
padding: 25px;
text-align: center;
}
14 changes: 9 additions & 5 deletions client/src/app/view/about/about.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,17 @@ <h1 class="text-center introh1 h1">关于我们</h1>
<footer class="blockquote-footer">Aqours<cite title="Source Title">夢で夜空を照らしたい</cite></footer>
</blockquote>
<div class="row" id="sysInfo">
<div class="col-sm-12">
<div class="col-md-6 col-sm-12">
<p class="h5">Latest System Releases: <span class="badge badge-success">{{Version}}</span></p>
<div style="display: inline">
<p style="display: inline">Front-End: <span class="badge badge-success">v1.0.3</span></p>
<p style="display: inline">Back-End: <span class="badge badge-success">v1.0.3</span></p>
<p>Latest Commit: <span class="badge badge-info">{{commit}}</span></p>
<div style="display: inline">
<p style="display: inline">Front-End: <span class="badge badge-success">v1.0.4</span></p>
<p style="display: inline">Back-End: <span class="badge badge-success">v1.0.4</span></p>
<p>Latest Commit: <span class="badge badge-info">{{commit}}</span></p>
</div>
</div>
<div class="col-md-6 col-sm-12 qBox">
<p class="h3">Any Questions?</p>
<button class="btn btn-info" routerLink="/about/question">Question Box</button>
</div>
</div>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</thead>
<tbody *ngFor="let qa of qaList">
<tr>
<th scope="row">{{qa._id | textSlice:6}}</th>
<th scope="row">{{qa._id | textSlice:12}}</th>
<td>{{qa.question|textSlice:8}}</td>
<td>{{qa.created | date : 'yyyy/mm/dd HH:ss'}}</td>
<td>
Expand Down

0 comments on commit fbeea37

Please sign in to comment.