My strategy for creating a basic daily diary is as follows:
<div class="panel panel-primary">
<div class="panel-heading">June</div>
<div class="panel-body">
25
<br>
<span class="glyphicon glyphicon-time"></span>
</div>
</div>
Below is the corresponding CSS code:
.panel{
border-color:#EEEEEE !important;
width: 150px;
}
.panel > .panel-heading {
background-color: greenyellow;
color: white;
height: 40px;
text-align: center;
border-color:black !important;
font-size: 20px;
}
.panel> .panel-body{
text-align: center;
font-family: "Comic Sans MS";
font-size: 35px;
}
.glyphicon{
font-size: 20px !important;
text-align: left !important;
}
I'm trying to position the glyphicon on the left side, but due to it being nested within panel-body that has a centered alignment, it's proving difficult. Even using "!important" doesn't solve the issue.
If anyone can provide assistance, I would greatly appreciate it.