nightTab/css/date.css

64 lines
955 B
CSS
Raw Normal View History

2019-01-05 21:57:21 +01:00
.date {
margin: 0;
padding: 0;
border-radius: var(--radius);
font-size: 1em;
font-family: var(--font-fjalla);
color: var(--white);
width: 100%;
min-height: 2.5em;
display: flex;
flex-direction: row;
justify-content: center;
flex-wrap: nowrap;
}
.date-seperator,
.date-date,
.date-day,
.date-month,
.date-year {
font-size: 1.5em;
display: flex;
justify-content: center;
align-items: center;
}
.date-seperator {
min-width: 0.5em;
color: rgb(var(--accent));
}
.date-date,
.date-day,
.date-month,
.date-year {
min-width: 1.25em;
}
.date [class^="date-"]:not(:first-child),
.date [class*=" date-"]:not(:first-child) {
margin-left: 0.125em;
}
.date [class^="date-"]:not(:last-child),
.date [class*=" date-"]:not(:last-child) {
margin-right: 0.125em;
}
.date-date {
color: var(--white);
}
.date-day {
color: var(--gray-16);
}
.date-month {
color: var(--gray-12);
}
.date-year {
color: var(--gray-10);
}