This commit is contained in:
Austin-Mills 2017-06-02 13:26:42 -04:00
parent 8422c79e17
commit 36b2e974d7
3 changed files with 18 additions and 5 deletions

View file

@ -1,6 +1,6 @@
.floating-navbar { .navbar {
//border-top: 4px solid #4286f4; //border-top: 4px solid #4286f4;
background-color: #a5a5a5; background-color: transparent;
margin-bottom: 0px; margin-bottom: 0px;
border-bottom: 0; border-bottom: 0;
border-left: 0; border-left: 0;

View file

@ -19,7 +19,7 @@
@spring-grey: #838789; @spring-grey: #838789;
@spring-light-grey: #f1f1f1; @spring-light-grey: #f1f1f1;
@body-bg: @spring-light-grey; @body-bg: transparent;
@text-color: @spring-brown; @text-color: @spring-brown;
@link-color: @spring-dark-green; @link-color: @spring-dark-green;
@link-hover-color: @spring-dark-green; @link-hover-color: @spring-dark-green;
@ -54,6 +54,19 @@
color: @spring-light-grey; color: @spring-light-grey;
} }
.carousel {
height: 100vh;
width: 100%;
overflow:hidden;
}
.carousel .carousel-inner {
height:100%;
}
.carousel .carousel-inner img {
display:block;
object-fit: cover;
}
.table-filter { .table-filter {
background-color: @spring-brown; background-color: @spring-brown;
padding: 9px 12px; padding: 9px 12px;

View file

@ -12,7 +12,7 @@
<!-- This is a test for a picture car. --> <!-- This is a test for a picture car. -->
<div class="container">
<div id="myCarousel" class="carousel slide" data-ride="carousel"> <div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators --> <!-- Indicators -->
<ol class="carousel-indicators"> <ol class="carousel-indicators">
@ -46,7 +46,7 @@
<span class="sr-only">Next</span> <span class="sr-only">Next</span>
</a> </a>
</div> </div>
</div>
</body> </body>