67 lines
1.1 KiB
CSS
67 lines
1.1 KiB
CSS
#root {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
html {
|
|
font-size: 1em;
|
|
}
|
|
body {
|
|
margin: auto;
|
|
padding-top: 1rem;
|
|
max-width: none;
|
|
min-height: 100vh;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
|
|
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
|
|
sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
code {
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
|
|
monospace;
|
|
}
|
|
a.unset {
|
|
color: unset;
|
|
text-decoration: unset;
|
|
}
|
|
a.active {
|
|
color: deeppink;
|
|
background-color: lightgray;
|
|
border-radius: 0.39em 0.39em 0 0;
|
|
}
|
|
td.clickable {
|
|
cursor: pointer;
|
|
}
|
|
div.clickable {
|
|
cursor: pointer;
|
|
}
|
|
div.page {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
div.search_toolbar {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: flex-end;
|
|
width: 100%;
|
|
}
|
|
div.feedback {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
}
|
|
button.refresh {
|
|
width: 100%;
|
|
}
|
|
td,
|
|
th {
|
|
padding-bottom: 0.5em;
|
|
padding-top: 0.5em;
|
|
}
|
|
dialog {
|
|
border: solid;
|
|
}
|