Skip to content

Commit 559bab7

Browse files
committed
Add styling fro refresh servers button
1 parent b13761c commit 559bab7

File tree

7 files changed

+13
-6
lines changed

7 files changed

+13
-6
lines changed

css/dark.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ body {
77
.server_list_table_top th {
88
color: #ebebeb;
99
}
10-
section {
10+
section, .countdownbtn {
1111
color: #ebebeb;
1212
background-color: #3b3b3b;
1313
}

css/light.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ body {
77
.server_list_table_top th {
88
color: black;
99
}
10-
section {
10+
section, .countdownbtn {
1111
color: black;
1212
background-color: #e6e6e6;
1313
}

css/midnight.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ body {
77
.server_list_table_top th {
88
color: #ebebeb;
99
}
10-
section {
10+
section, .countdownbtn {
1111
color: #ebebeb;
1212
background-color: rgb(0, 0, 0);
1313
border: 1px solid white;

css/style.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -376,6 +376,13 @@ section {
376376
overflow: hidden;
377377
text-overflow: ellipsis;
378378
}
379+
.countdownbtn {
380+
border: none;
381+
border-radius: 4px;
382+
padding: 6px 10px;
383+
margin: 3px 0;
384+
font-size: 12px;
385+
}
379386
@media only screen and (min-width: 1700px) {
380387
.container {width: 75%;}
381388
}

css/summer-night-inverted.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ body {
77
.server_list_table_top th {
88
color: black;
99
}
10-
section {
10+
section, .countdownbtn {
1111
color: #ebebeb;
1212
background-color: #1D1D1F;
1313
}

css/summer-night.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ body {
44
.user-avater {
55
border: 4px solid #F5F5F5;
66
}
7-
section {
7+
section, .countdownbtn {
88
color: black;
99
background-color: #F5F5F5;
1010
}

index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
?>
9191
<p class="countdown"><?php echo $language[$lang][13]?> <span id="countdown"></span>s.</p>
9292
<div id="countdown"></div>
93-
<div><button type="button" onclick="callLoadData()">Refresh Servers</button></div>
93+
<div><button class="countdownbtn" type="button" onclick="callLoadData()">Refresh Servers</button></div>
9494
<script>
9595
function callLoadData() {
9696
if (typeof downloadTimer !== 'undefined') {

0 commit comments

Comments
 (0)