mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-29 05:14:48 +00:00
115 lines
2.1 KiB
CSS
115 lines
2.1 KiB
CSS
html[data-theme="light"] {
|
|
body {
|
|
background-color: #fff;
|
|
background-position: top center;
|
|
background-repeat: no-repeat;
|
|
color: #151D21;
|
|
}
|
|
}
|
|
|
|
html[data-theme="dark"] {
|
|
body {
|
|
background-image: url(https://slint.dev/assets/img/bg-dark.svg);
|
|
background-position: top center;
|
|
background-repeat: no-repeat;
|
|
color: #fff;
|
|
background-size: cover;
|
|
background-attachment: fixed;
|
|
-webkit-background-size: cover; /* Safari fix */
|
|
background-color: #151D21;
|
|
}
|
|
|
|
.bd-header-article,
|
|
.bd-sidebar-primary,
|
|
.bd-sidebar-secondary {
|
|
backdrop-filter: blur(10px);
|
|
-webkit-backdrop-filter: blur(10px);
|
|
}
|
|
|
|
--pst-color-background: transparent;
|
|
--pst-color-on-background: transparent;
|
|
}
|
|
|
|
/* html {
|
|
--pst-color-background: #151D21;
|
|
} */
|
|
|
|
|
|
div.sidebar-primary-item:first-child {
|
|
text-align: center;
|
|
}
|
|
|
|
div.header-article-item button.search-button-field {
|
|
font-size: 0.9rem;
|
|
display: inline flex;
|
|
border: 1px solid var(--pst-color-border);
|
|
}
|
|
|
|
div.search-button__wrapper {
|
|
display: none;
|
|
}
|
|
|
|
div.DocSearch-Logo {
|
|
display: none;
|
|
}
|
|
|
|
.bd-search-container {
|
|
display: none;
|
|
}
|
|
|
|
.bd-header-article .search-button {
|
|
display: none;
|
|
}
|
|
|
|
div.DocSearch-Container {
|
|
z-index: 1022;
|
|
}
|
|
|
|
@media (max-width: 750px) {
|
|
header.DocSearch-SearchBar {
|
|
padding-top: 4rem;
|
|
;
|
|
}
|
|
}
|
|
|
|
div.cm-activeLine {
|
|
background: transparent !important;
|
|
}
|
|
|
|
div.cm-focused div.cm-activeLine {
|
|
background: rgba(255, 255, 255, 0.1) !important;
|
|
}
|
|
|
|
.cm-status-panel {
|
|
padding: 4px;
|
|
border-top: 1px solid #ccc;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.cm-status-panel button {
|
|
font-size: 12px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* CSS to limit the height and enable scrollbars */
|
|
.codemirror-editor {
|
|
border: 1px solid #ccc; /* Optional: Add a border around the editor */
|
|
}
|
|
|
|
.cm-editor {
|
|
max-height: 400px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.show-preview {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.preview-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 200px;
|
|
}
|