You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
1.5 KiB
CSS
100 lines
1.5 KiB
CSS
:root {
|
|
color: #20242a;
|
|
font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
|
|
font-size: 13px;
|
|
background: #f4f6f8;
|
|
font-synthesis: none;
|
|
text-rendering: optimizeLegibility;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#app {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
button,
|
|
input,
|
|
select,
|
|
textarea {
|
|
font: inherit;
|
|
}
|
|
|
|
.demo-layout {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 0;
|
|
}
|
|
|
|
.demo-layout__brand {
|
|
padding: 0 8px 0 2px;
|
|
color: #20242a;
|
|
font-weight: 700;
|
|
text-decoration: none;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.demo-layout__workspace {
|
|
display: flex;
|
|
flex: 1;
|
|
min-height: 0;
|
|
}
|
|
|
|
.demo-layout__main {
|
|
flex: 1;
|
|
min-width: 0;
|
|
min-height: 0;
|
|
padding: 24px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.demo-layout__main--with-sidebar {
|
|
padding: 22px 24px 40px;
|
|
}
|
|
|
|
.demo-button {
|
|
box-sizing: border-box;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 30px;
|
|
padding: 4px 10px;
|
|
color: #20242a;
|
|
font: inherit;
|
|
font-weight: 600;
|
|
line-height: 1.2;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
background: #fff;
|
|
border: 1px solid #bfc5ce;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.demo-button:hover {
|
|
background: #eef1f5;
|
|
}
|
|
|
|
.demo-button--primary {
|
|
color: #fff;
|
|
background: #286aa6;
|
|
border-color: #245f95;
|
|
}
|
|
|
|
.demo-button--primary:hover {
|
|
background: #245f95;
|
|
}
|
|
|
|
.demo-button:focus-visible,
|
|
.demo-layout__brand:focus-visible {
|
|
outline: 2px solid #3578c6;
|
|
outline-offset: 2px;
|
|
}
|