manyfest
Version:
JSON Object Manifest for Data Description and Parsing
74 lines (60 loc) • 1.26 kB
CSS
/* ============================================================================
Pict Docuserve - Base Styles
============================================================================ */
/* Reset and base */
*, *::before, *::after {
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
color: #423D37;
background-color: #fff;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
margin-top: 0;
line-height: 1.3;
}
a {
color: #2E7D74;
text-decoration: none;
}
a:hover {
color: #256861;
}
/* Application container */
#Docuserve-Application-Container {
min-height: 100vh;
}
/* Utility: scrollbar styling */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #F5F0E8;
}
::-webkit-scrollbar-thumb {
background: #D4CCBE;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #B5AA9A;
}
/* Responsive adjustments */
@media (max-width: 768px) {
html {
font-size: 14px;
}
#Docuserve-Sidebar-Container {
display: none;
}
.docuserve-body {
flex-direction: column;
}
}