mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 20:26:23 +00:00
98 lines
1.7 KiB
CSS
98 lines
1.7 KiB
CSS
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, Segoe WPC, Segoe UI, HelveticaNeue-Light, Ubuntu, Droid Sans,
|
|
sans-serif;
|
|
font-size: 14px;
|
|
/* 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;
|
|
}
|
|
|
|
.horizontal-split-handle {
|
|
background-color: var(--theme-border);
|
|
width: var(--dim-splitter-thickness);
|
|
cursor: col-resize;
|
|
}
|
|
.horizontal-split-handle:hover {
|
|
background-color: var(--theme-bg-2);
|
|
}
|
|
|
|
.vertical-split-handle {
|
|
background-color: var(--theme-border);
|
|
height: var(--dim-splitter-thickness);
|
|
cursor: row-resize;
|
|
}
|
|
.vertical-split-handle:hover {
|
|
background-color: var(--theme-bg-2);
|
|
}
|
|
|
|
.icon-invisible {
|
|
visibility: hidden;
|
|
}
|
|
|
|
/* html, body {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
color: #333;
|
|
margin: 0;
|
|
padding: 8px;
|
|
box-sizing: border-box;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
|
}
|
|
|
|
a {
|
|
color: rgb(0,100,200);
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
a:visited {
|
|
color: rgb(0,80,160);
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
}
|
|
|
|
input, button, select, textarea {
|
|
font-family: inherit;
|
|
font-size: inherit;
|
|
-webkit-padding: 0.4em 0;
|
|
padding: 0.4em;
|
|
margin: 0 0 0.5em 0;
|
|
box-sizing: border-box;
|
|
border: 1px solid #ccc;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
input:disabled {
|
|
color: #ccc;
|
|
}
|
|
|
|
button {
|
|
color: #333;
|
|
background-color: #f4f4f4;
|
|
outline: none;
|
|
}
|
|
|
|
button:disabled {
|
|
color: #999;
|
|
}
|
|
|
|
button:not(:disabled):active {
|
|
background-color: #ddd;
|
|
}
|
|
|
|
button:focus {
|
|
border-color: #666;
|
|
} */
|