Schedule Card
A copy-paste calendars & date pickers component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.
Calendars & Date PickersHTMLCSSany framework
24JUN
Q3 Strategy Review
+3
Copy into your project
HTML
<div class="nuda-schedcard">
<div class="nuda-schedcard__date">
<span class="nuda-schedcard__day">24</span>
<span class="nuda-schedcard__mo">JUN</span>
</div>
<div class="nuda-schedcard__body">
<div class="nuda-schedcard__title">Q3 Strategy Review</div>
<div class="nuda-schedcard__meta">10:30 → 11:30 · Room A</div>
<div class="nuda-schedcard__avatars">
<span></span><span></span><span></span><span>+3</span>
</div>
</div>
</div>CSS
.nuda-schedcard {
display: flex;
gap: 14px;
padding: 16px;
background: rgba(255,255,255,.02);
border: 1px solid rgba(255,255,255,.06);
border-radius: 14px;
width: 100%;
max-width: 300px;
cursor: pointer;
transition: transform .25s,border-color .25s,box-shadow .25s;
}
.nuda-schedcard:hover {
transform: translateY(-3px);
border-color: rgba(228,255,84,.3);
box-shadow: 0 12px 24px -10px rgba(0,0,0,.5);
}
.nuda-schedcard__date {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 50px;
padding: 8px 0;
background: rgba(228,255,84,.08);
border-radius: 10px;
flex-shrink: 0;
transition: background .25s;
}
.nuda-schedcard:hover .nuda-schedcard__date {
background: rgba(228,255,84,.18);
}
.nuda-schedcard__day {
color: #e4ff54;
font-size: 20px;
font-weight: 700;
line-height: 1;
}
.nuda-schedcard__mo {
color: #a0a0a8;
font-size: 9px;
font-weight: 600;
letter-spacing: .1em;
margin-top: 2px;
}
.nuda-schedcard__title {
color: #fafafa;
font-size: 13px;
font-weight: 600;
margin-bottom: 3px;
}
.nuda-schedcard__meta {
color: #a0a0a8;
font-size: 11px;
margin-bottom: 8px;
}
.nuda-schedcard__avatars {
display: flex;
align-items: center;
}
.nuda-schedcard__avatars span {
width: 18px;
height: 18px;
border-radius: 50%;
background: linear-gradient(135deg,#62b6ff,#9d6dff);
border: 2px solid #0c0c10;
margin-left: -5px;
font-size: 9px;
color: #fafafa;
display: flex;
align-items: center;
justify-content: center;
}
.nuda-schedcard__avatars span:first-child {
margin-left: 0;
}
.nuda-schedcard__avatars span:last-child {
background: rgba(255,255,255,.08);
color: #a0a0a8;
font-weight: 600;
}
How to use Schedule Card
Paste the HTML where you need it and the CSS into a global stylesheet (or a <style> tag). Every class is prefixed nuda- so it never collides with Tailwind or your own styles. Tweak the CSS custom properties to match your design system.
Works in React, Vue, Svelte, Astro, Next.js, Nuxt, Laravel Blade, Django, Rails — or a single .html file. No npm install, no build step.