mirror of
https://github.com/lucky-sideburn/kubeinvaders.git
synced 2026-08-23 21:46:21 +00:00
fix style
This commit is contained in:
+2
-2
@@ -157,13 +157,13 @@
|
||||
<!-- START SWITCH BUTTONS FOR MODE (GAME, PROGRAMMING)-->
|
||||
<div class="row" style="margin-bottom: 1%;">
|
||||
<div class="col text-center">
|
||||
<button type="button" id="gameModeButton" class="btn btn-light" onclick="startGameMode()">Game Mode</button>
|
||||
<button type="button" id="gameModeButton" class="btn btn-light btn-green" onclick="startGameMode()">Game Mode</button>
|
||||
</div>
|
||||
<div class="col text-center">
|
||||
|
||||
</div>
|
||||
<div class="col text-center">
|
||||
<button type="button" id="programmingModeButton" class="btn btn-light" onclick="startProgrammingMode()">Programming Mode</button>
|
||||
<button type="button" id="programmingModeButton" class="btn btn-light btn-green" onclick="startProgrammingMode()">Programming Mode</button>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END SWITCH BUTTONS FOR MODE (GAME, PROGRAMMING)-->
|
||||
|
||||
+18
-1
@@ -38,7 +38,6 @@ hr {
|
||||
font-family: Courier New, Courier, monospace;
|
||||
}
|
||||
|
||||
|
||||
.custom-btn-group {
|
||||
margin-top: 2%;
|
||||
border: 5px solid #b2afaf;
|
||||
@@ -93,6 +92,24 @@ hr {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.log-row {
|
||||
color: #4fa80b;
|
||||
font-size: 14px;
|
||||
font-family: Courier New, Courier, monospace;
|
||||
margin-top: 0.5%;
|
||||
}
|
||||
|
||||
.log-title {
|
||||
color: #7c737f;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.btn-green {
|
||||
background-color: #1ed931;
|
||||
color: #000000;
|
||||
border-color: #000000;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: pixel;
|
||||
src: url('./fonts/pixel.otf');
|
||||
|
||||
@@ -116,7 +116,7 @@ def compute_line(api_response_line, container):
|
||||
<div class='row' style='font-size: 12px'>
|
||||
<hr/>
|
||||
</div>
|
||||
<div class='row'>
|
||||
<div class='row log-title'>
|
||||
<div class='col'>Namespace</div>
|
||||
<div class='col'>Pod</div>
|
||||
<div class='col'>Container</div>
|
||||
@@ -139,7 +139,7 @@ def compute_line(api_response_line, container):
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class='row' style='margin-top: 0.5%; color: #444141; font-size: 12px; font-family: Courier New, Courier, monospace;'>
|
||||
<div class='row log-row'>
|
||||
{api_response_line}
|
||||
</div>
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user