Skip to content

Instantly share code, notes, and snippets.

@akrug23
Created July 11, 2016 13:49
Show Gist options
  • Save akrug23/4b9190ff756816fd81d14ec0a5308e14 to your computer and use it in GitHub Desktop.
Save akrug23/4b9190ff756816fd81d14ec0a5308e14 to your computer and use it in GitHub Desktop.
Calendar Thumbnail
.calendar
{
display: table;
width: 78px;
height: 80px;
text-align: center;
border-radius: 14px;
background-color: #dee6ef;
}
.calendar-row
{
display: table-row;
}
.calendar-year
{
font-size: 16px;
font-weight: 600;
display: table-cell;
width: 100%;
height: 29px;
vertical-align: middle;
text-transform: uppercase;
border-top-left-radius: 14px;
border-top-right-radius: 14px;
background-color: #4a90e2;
&-small
{
font-size: 8px;
}
}
.calendar-month
{
font-size: 13px;
font-weight: 600;
display: table-cell;
width: 100%;
vertical-align: middle;
border-bottom-right-radius: 14px;
border-bottom-left-radius: 14px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment