I just want to chime in on something about inline styling - Don’t do it! ;D
If anything use the style tags in the header in the HTML, but preferably in a external file. All you doing is creating one big headache done the road if you don’t like the current style. Just my .02 cents.
Sorry about the Sass (A CSS Preprocessor), but I don’t feel like hunting down the code. This not only centers the text horizontally but vertically granted it’s only a couple of numbers - its still text: This is just to give you an idea that doing CSS in an external file not only saves you a headache - it becomes second nature after awhile.
.calday a {
@include box-sizing(border-box);
float: left;
display: block;
background-color: $color-100;
border: 1px solid $color-1200;
text-decoration: none;
color: $color-200;
font-size: 1.0rem;
line-height: 54px;
text-align: center;
width: 100%;
max-width: 54px;
height: 54px;
&:hover {
background-color: $color-3100;
color: $color-1200;
font-weight: bold;
}
}