60 lines
855 B
CSS
60 lines
855 B
CSS
#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;
|
|
}
|
|
|
|
main {
|
|
width: 100%;
|
|
margin: auto;
|
|
}
|
|
|
|
table {
|
|
text-align: left;
|
|
border-spacing: 0.5rem;
|
|
border-collapse: separate;
|
|
width: 100%;
|
|
|
|
col.content {
|
|
width: min-content;
|
|
}
|
|
|
|
.frequency th {
|
|
padding-top: 1rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.heading th {
|
|
font-size: x-small;
|
|
font-weight: bold;
|
|
font-variant-caps: small-caps;
|
|
}
|
|
}
|