epicyon/epicyon-calendar.css

118 lines
2.2 KiB
CSS
Raw Normal View History

2019-10-10 18:25:42 +00:00
body {
background-color: #e66053;
color: #4E4F4A;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
font-family: 'Montserrat';
font-weight: 700;
min-height: 100vh;
}
main {
background-color: #F6E9DC;
-ms-flex-preferred-size: 980px;
flex-basis: 980px;
2019-10-10 14:43:21 +00:00
}
2019-10-10 18:25:42 +00:00
.calendar {
table-display: fixed;
width: 100%;
2019-10-10 14:43:21 +00:00
}
2019-10-10 18:25:42 +00:00
.calendar__day__header,
.calendar__day__cell {
border: 2px solid #e66053;
text-align: center;
width: 100% / 7;
vertical-align: middle;
2019-10-10 14:43:21 +00:00
}
2019-10-10 18:25:42 +00:00
.calendar__day__header:first-child,
.calendar__day__cell:first-child {
border-left: none;
2019-10-10 14:43:21 +00:00
}
2019-10-10 18:25:42 +00:00
.calendar__day__header:last-child,
.calendar__day__cell:last-child {
border-right: none;
2019-10-10 14:43:21 +00:00
}
2019-10-10 18:25:42 +00:00
.calendar__day__header,
.calendar__day__cell {
padding: .75rem 0 1.5rem;
2019-10-10 14:43:21 +00:00
}
2019-10-10 18:25:42 +00:00
.calendar__banner--month {
text-align: center;
padding: .75rem;
2019-10-10 14:43:21 +00:00
}
2019-10-10 18:25:42 +00:00
.calendar__banner--month h1 {
background-color: #4E4F4A;
color: #F6E9DC;
display: inline-block;
font-size: 3rem;
font-weight: 400;
letter-spacing: 0.1em;
padding: .5rem 2rem;
text-transform: uppercase;
2019-10-10 14:43:21 +00:00
}
2019-10-10 18:25:42 +00:00
.calendar__day__header {
font-size: 1rem;
letter-spacing: 0.1em;
text-transform: uppercase;
2019-10-10 14:43:21 +00:00
}
2019-10-10 18:25:42 +00:00
.calendar__day__cell {
font-size: 4rem;
position: relative;
2019-10-10 14:43:21 +00:00
}
2019-10-10 18:25:42 +00:00
tr:nth-child(odd) > .calendar__day__cell:nth-child(odd) {
color: #e66053;
2019-10-10 14:43:21 +00:00
}
2019-10-10 18:25:42 +00:00
tr:nth-child(even) > .calendar__day__cell:nth-child(even) {
color: #e66053;
2019-10-10 14:43:21 +00:00
}
2019-10-10 18:25:42 +00:00
.calendar__day__cell[data-event] {
background-color: #e66053;
color: #4E4F4A;
2019-10-10 14:43:21 +00:00
}
2019-10-10 18:25:42 +00:00
.calendar__day__cell[data-event]:after {
content: attr(data-event);
color: #F6E9DC;
display: block;
font-weight: 400;
font-size: .75rem;
position: absolute;
bottom: 0;
width: 100%;
height: 1rem;
text-transform: uppercase;
2019-10-10 14:43:21 +00:00
}
2019-10-10 18:25:42 +00:00
.calendar__day__cell[data-today] {
background-color: #4E4F4A;
border-color: #4E4F4A;
color: #F6E9DC;
2019-10-10 14:43:21 +00:00
}
2019-10-10 18:25:42 +00:00
.calendar__day__cell[data-today]:after {
content: attr(data-today);
color: #F6E9DC;
display: block;
font-size: .75rem;
font-weight: 400;
position: absolute;
bottom: 0;
width: 100%;
height: 1rem;
text-transform: uppercase;
2019-10-10 14:43:21 +00:00
}