You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
473 B
Sass
33 lines
473 B
Sass
|
|
@mixin centerer
|
|
position: absolute
|
|
top: 50%
|
|
left: 50%
|
|
transform: translate(-50%, -50%)
|
|
|
|
.jumbotron
|
|
text-align: center
|
|
|
|
#UpperCarousel
|
|
width: 70%
|
|
margin: auto
|
|
|
|
#LowerCarousel
|
|
width: 70%
|
|
margin: auto
|
|
|
|
.carousel-cell
|
|
border-color: #0000ff
|
|
border-radius: 5px
|
|
width: 66%
|
|
background: #8C8
|
|
margin-right: 10px
|
|
height: 60px
|
|
line-height: 1.5
|
|
// display: flex
|
|
// align-items: center
|
|
|
|
.carousel-cell-content
|
|
color: #ffffff
|
|
@include centerer
|