2022-01-17 19:50:14 +01:00
|
|
|
* {
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
text-rendering: optimizelegibility;
|
|
|
|
font-smooth: auto;
|
|
|
|
-webkit-font-smoothing: auto;
|
2022-01-19 13:12:28 +01:00
|
|
|
user-select: none;
|
2022-01-17 19:50:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
font-size: 1rem;
|
2022-01-19 13:12:28 +01:00
|
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
2022-01-17 19:50:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
display: inline-block;
|
|
|
|
line-height: 3rem;
|
|
|
|
padding: 0 1rem;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
height: 3rem;
|
|
|
|
line-height: 3rem;
|
|
|
|
flex-shrink: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tab_dropdown {
|
|
|
|
flex-basis: 20px;
|
|
|
|
width: 100px !important;
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#selector {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app {
|
|
|
|
user-select: text;
|
2022-01-19 13:12:28 +01:00
|
|
|
padding: 0rem 1rem;
|
2022-01-17 19:50:14 +01:00
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr:hover {
|
|
|
|
background-color: hsla(0, 0%, 0%, 0.1);
|
|
|
|
}
|