I am using bootstrap and I have a background img that is aligned to the center of timer-background. I want subtext and big-text width to change to be 100% of timer-background so that I can center align them.
HTML:
<div class='col-xs-4'>
<div class='borders timer-background'>
<span class='subtext'>june</span><span class="big-text">05</span>
</div>
</div>
CSS:
.timer-background {
background: url(../assets/timer_background.png) center center no-repeat;
}
.big-text {
font-family: 'Tulpen One', cursive;
color: #ffffff;
font-size: 120px;
}