Moving some style="" in the css keep the html neat!

This commit is contained in:
bittenbythedark
2019-03-03 11:21:36 +01:00
parent 0845e68c54
commit 91065db5a3
2 changed files with 13 additions and 2 deletions
+2 -2
View File
@@ -40,7 +40,7 @@
<form class="form-inline">
<div class="form-group mb-4">
<label for="channelselector">Channel:</label>
<select id="channelselector" class="custom-select" style="border:none;">
<select id="channelselector" class="custom-select channel_border">
<option value="SingularityAlpha">Release</option>
<option value="Second channel">Alpha</option>
<option value="Third Channel">Test</option>
@@ -57,7 +57,7 @@
<a class="page-link" href="#" tabindex="-1" aria-disabled="true">&#171;</a>
</li>
<label for="channelselector">page </label>
<select id="channelselector" class="custom-select" style="width:60px; height:40px; border:none; margin-top:-7.5px;">
<select id="channelselector" class="custom-select pagination_drop">
<option>1</option>
<option>2</option>
<option>3</option>
+11
View File
@@ -110,3 +110,14 @@ body{
margin-left:5px;
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='white' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E")
}
.pagination_drop
{
width:60px;
height:40px;
border:none;
margin-top:-7.5px;
}
.channel_border
{
border:none; //Probably could eliminate that but who cares xD
}