hehe, you got me playing with this too. I found some stuff here
and I’m playing with this particular one:
https://codepen.io/corvus-007/pen/MzEKyJ
What I like is that it doesn’t use tables, so it seems like it might be a little cleaner. There’s still the question of how to dynamically build it for each month, so I still need to figure that out. Right now I’m playing with the CSS. Changed a couple of things and had to fix some CSS that wasn’t rendering with glide.
Got this so far.
This is my slightly altered version of the CSS so far.
<pre>
<span>
<style>
body {
position: relative;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: 'Poppins', sans-serif;
background: url("https://images.unsplash.com/photo-1516912481808-3406841bd33c?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=183f2924ba5a8429441804609b2d4f61") no-repeat center / cover;
&::before {
content: "";
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: inherit;
filter: blur(10px);
}
}
.calendar {
position: relative;
width: 100%;
background-color: #fff;
box-sizing: border-box;
box-shadow: 0 5px 50px rgba(#000, 0.5);
border-radius: 8px;
overflow: hidden;
}
.calendar__picture {
position: relative;
height: 100px;
padding: 20px;
color: #fff;
background: #262626 url("https://images.unsplash.com/photo-1516912481808-3406841bd33c?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=183f2924ba5a8429441804609b2d4f61") no-repeat center / cover;
text-shadow: 0 2px 2px rgba(#000, 0.2);
box-sizing: border-box;
&::before {
content: "";
left: 0;
right: 0;
top: 0;
bottom: 0;
position: absolute;
background: linear-gradient(to top, rgba(#000, 0.25), rgba(#000, 0.1));
}
h2 {
margin: 0;
}
h3 {
margin: 0;
font-weight: 500;
}
}
.calendar__date {
padding: 20px;
display: grid;
grid-template-columns: repeat(7, minmax(10%, 1fr));
grid-gap: 10px;
box-sizing: border-box;
}
.calendar__day {
display: flex;
align-items: center;
justify-content: center;
height: 25px;
font-weight: 600;
color: #262626;
}
.calendar__day:nth-child(1) {
color: #ff685d !important;
}
.calendar__number {
display: flex;
align-items: center;
justify-content: center;
height: 25px;
color: #262626;
}
.calendar__number:nth-child(8),
.calendar__number:nth-child(15),
.calendar__number:nth-child(22),
.calendar__number:nth-child(29),
.calendar__number:nth-child(36) {
color: #ff685d;
font-weight: 700;
}
.calendar__number--current,
.calendar__number:hover {
border-radius:20px;
background-color: #009688;
color: #fff !important;
font-weight: 700;
cursor: pointer;
}
.calendar__number--day {
border-radius:20px;
background-color: #aaaaaa;
color: #fff !important;
font-weight: 700;
cursor: pointer;
}
.calendar__number--night {
border-radius:20px;
background-color: #000000;
color: #fff !important;
font-weight: 700;
cursor: pointer;
}
</style>
</span>
</pre>
In hindsight, the ‘body’ class in the CSS could probably be done away with.