More languages
More actions
use codex tokens for borders to improve dark mode support |
No edit summary |
||
Line 1: | Line 1: | ||
.documentation { | .documentation { | ||
margin-top: var( --space-md ); | |||
padding-top: var( --space-md ); | |||
border-top: 1px solid; | |||
border-color: var( --border-color-base ); | |||
font-size: var( --font-size-small ); | |||
} | } | ||
.documentation- | .documentation-header { | ||
display: flex; | |||
align-items: center; | |||
justify-content: space-between; | |||
flex-wrap: wrap; | |||
} | } | ||
.documentation- | .documentation-title { | ||
color: var( --color-emphasized ); | |||
font-size: var( --font-size-x-large ); | |||
font-weight: var( --font-weight-semi-bold ); | |||
line-height: var( --line-height-xxx-small ); | |||
} | } | ||
.documentation- | .documentation-links { | ||
font-family: var( --font-family-monospace ); | |||
} | } | ||
.documentation- | .documentation-subheader { | ||
color: var( --color-subtle ); | |||
font-size: var( --font-size-x-small ); | |||
line-height: var( --line-height-xx-small ); | |||
} | } | ||
.documentation- | .documentation-content { | ||
margin-top: var( --space-xl ); | |||
} | } | ||
.documentation-modulestats { | |||
display: flex; | |||
align-items: center; | |||
justify-content: space-between; | |||
} | } | ||
.documentation-modulestats > * { | |||
margin: 0 !important; | |||
} | } |
Revision as of 01:13, 18 March 2025
.documentation {
margin-top: var( --space-md );
padding-top: var( --space-md );
border-top: 1px solid;
border-color: var( --border-color-base );
font-size: var( --font-size-small );
}
.documentation-header {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}
.documentation-title {
color: var( --color-emphasized );
font-size: var( --font-size-x-large );
font-weight: var( --font-weight-semi-bold );
line-height: var( --line-height-xxx-small );
}
.documentation-links {
font-family: var( --font-family-monospace );
}
.documentation-subheader {
color: var( --color-subtle );
font-size: var( --font-size-x-small );
line-height: var( --line-height-xx-small );
}
.documentation-content {
margin-top: var( --space-xl );
}
.documentation-modulestats {
display: flex;
align-items: center;
justify-content: space-between;
}
.documentation-modulestats > * {
margin: 0 !important;
}