Spaces:
Sleeping
Sleeping
File size: 1,035 Bytes
c3af845 ee3631e c3af845 ee3631e c3af845 ee3631e c3af845 ee3631e c3af845 ee3631e c3af845 ee3631e c3af845 ee3631e c3af845 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
css = """
.container {
max-width: 1200px;
margin: auto;
padding: 20px;
}
.results {
padding: 20px;
border-radius: 8px;
margin-top: 20px;
}
.entity-section {
margin: 15px 0;
padding: 12px;
border-radius: 6px;
}
/* Remove color definitions and let theme handle them */
.alert-warning {
padding: 12px;
border-radius: 6px;
margin: 12px 0;
}
.alert-success {
padding: 12px;
border-radius: 6px;
margin: 12px 0;
}
.related-events {
padding: 15px;
border-radius: 6px;
margin-top: 15px;
}
/* Grid and spacing utilities */
.grid {
display: grid;
}
.grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.gap-4 {
gap: 1rem;
}
.space-y-4 > * + * {
margin-top: 1rem;
}
.mt-4 {
margin-top: 1rem;
}
.mb-2 {
margin-bottom: 0.5rem;
}
.text-sm {
font-size: 0.875rem;
line-height: 1.25rem;
}
.p-4 {
padding: 1rem;
}
""" |