Robert Marshall 9 년 전
부모
커밋
5126e06698
3개의 변경된 파일9개의 추가작업 그리고 8개의 파일을 삭제
  1. 3 2
      View/Status/index.view
  2. 3 3
      css/style.css
  3. 3 3
      less/style.less

+ 3 - 2
View/Status/index.view

@@ -1,6 +1,7 @@
+@Title{Server Status}@
 @Body{
-	<h2>Server Status</h2>
-	Uptime: <?=$uptime['days']?> days, <?=$uptime['hours']?> hours and <?=$uptime['minutes']?> minutes
+	<h3>Uptime</h3>
+	<?=$uptime['days']?> days, <?=$uptime['hours']?> hours and <?=$uptime['minutes']?> minutes
 	<h3>Load</h3>
 	<table class="alternatingRows">
 		<tr><td>1</td><td><?= $load[0]*100 ?>% (<?= ($load[0]/4)*100 ?>% core avg)</td></tr>

+ 3 - 3
css/style.css

@@ -57,7 +57,7 @@ h2 a {
 h3 {
   margin-bottom: 10px;
 }
-h3 :first-child {
+h3:first-child {
   margin-top: 0px;
 }
 hr {
@@ -305,9 +305,9 @@ th.number {
 div.percentageBar {
   width: 100%;
   height: 20px;
-  background: #4caf50;
+  background: #9ccc65;
 }
 div.percentageBar > div {
-  background: #d32f2f;
+  background: #ef5350;
   height: 100%;
 }

+ 3 - 3
less/style.less

@@ -66,7 +66,7 @@ h2{
 h3{
 	margin-bottom: 10px;
 
-	:first-child{
+	&:first-child{
 		margin-top: 0px;
 	}
 }
@@ -365,10 +365,10 @@ td, th{
 div.percentageBar{
 	width:100%;
 	height:20px;
-	background:@Green-500;
+	background:@LightGreen-400;
 	
 	>div{
-		background:@Red-700;
+		background:@Red-400;
 		height:100%;
 	}
 }