entretien/static/home.css

62 lines
875 B
CSS
Raw Normal View History

2026-05-31 22:02:32 -05:00
#controls {
display: flex;
flex-direction: row;
justify-content: space-between;
width: 100%;
padding: 0 0.5rem;
}
#new-task,
#bulk-complete {
border: 1px solid var(--line-color);
border-radius: 100vh;
padding: 0.5em 1em;
display: flex;
flex-direction: row;
align-items: flex-end;
justify-content: center;
flex-wrap: wrap;
gap: 1em;
margin-bottom: 1em;
button {
padding: 0.2em 1em;
}
.error {
width: 100%;
}
}
#regex {
font-family: monospace;
}
2026-05-31 22:02:32 -05:00
main {
width: 100%;
max-width: 600px;
margin: auto;
}
table {
text-align: left;
border-spacing: 0.5rem;
border-collapse: separate;
width: 100%;
col.content {
width: min-content;
}
2026-05-31 22:02:32 -05:00
.frequency th {
padding-top: 1rem;
font-weight: bold;
}
2026-05-31 22:02:32 -05:00
.heading th {
font-size: x-small;
font-weight: bold;
font-variant-caps: small-caps;
}
}