starcitizen>Facerafter m (1 revision imported) |
starcitizen>Alistair3149 (Update CSS variable from Citizen skin) |
||
Line 1: | Line 1: | ||
.documentation { | .documentation { | ||
display: flex; | |||
box-sizing: border-box; | |||
flex-direction: column; | |||
padding: 1.2rem; | |||
margin: 1.6rem 0; | |||
background-color: var( --color-surface-2 ); | |||
border-radius: var( --border-radius--medium ); | |||
box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.03 ), 0 1px 2px rgba( 0, 0, 0, 0.06 ); | |||
font-size: 0.875rem; | |||
} | } | ||
.documentation-header { | .documentation-header { | ||
margin-top: 0; | |||
margin-bottom: 0.8rem; | |||
color: var( --color-base--emphasized ); | |||
font-size: 1.25rem; | |||
font-weight: 600; | |||
line-height: 1.2; | |||
} | } | ||
.documentation-subheader { | .documentation-subheader { | ||
margin: -0.6rem 0 1.6rem 0; | |||
color: var( --color-base--subtle ); | |||
font-size: 0.825rem; | |||
} | } | ||
.documentation-links { | .documentation-links { | ||
margin: 0.3rem 0; | |||
float: right; | |||
font-family: monospace; | |||
font-size: 0.875rem; | |||
font-weight: 400; | |||
} | } | ||
Line 46: | Line 44: | ||
.tooltip-trigger { | .tooltip-trigger { | ||
padding: 0.2rem 0.5rem; | padding: 0.2rem 0.5rem; | ||
margin-right: 2px; | |||
background: var( --color-primary ); | |||
border-radius: 100px; | |||
color: #fff; | |||
} | } | ||
Line 58: | Line 56: | ||
.tooltip-content { | .tooltip-content { | ||
position: absolute; | position: absolute; | ||
z-index: 1; | |||
right: 0; | |||
padding: 15px; | |||
background-color: var( --color-surface-1 ); | |||
border-radius: var( --border-radius--medium ); | |||
box-shadow: 0 14px 28px rgba( 0, 0, 0, 0.06 ), 0 10px 10px rgba( 0, 0, 0, 0.06 ); | |||
visibility: hidden; | |||
} | } | ||
.tooltip-content > ol { | .tooltip-content > ol { | ||
margin-top: 0; | margin-top: 0; | ||
margin-left: 1.2rem; | |||
} | } | ||
Revision as of 13:45, 28 April 2022
.documentation {
display: flex;
box-sizing: border-box;
flex-direction: column;
padding: 1.2rem;
margin: 1.6rem 0;
background-color: var( --color-surface-2 );
border-radius: var( --border-radius--medium );
box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.03 ), 0 1px 2px rgba( 0, 0, 0, 0.06 );
font-size: 0.875rem;
}
.documentation-header {
margin-top: 0;
margin-bottom: 0.8rem;
color: var( --color-base--emphasized );
font-size: 1.25rem;
font-weight: 600;
line-height: 1.2;
}
.documentation-subheader {
margin: -0.6rem 0 1.6rem 0;
color: var( --color-base--subtle );
font-size: 0.825rem;
}
.documentation-links {
margin: 0.3rem 0;
float: right;
font-family: monospace;
font-size: 0.875rem;
font-weight: 400;
}
/**
* Tooltip styles used by DependencyList,
* shouldn't be here but it is only used here anyways
*/
.hatnote-container {
position: relative;
}
.tooltip-trigger {
padding: 0.2rem 0.5rem;
margin-right: 2px;
background: var( --color-primary );
border-radius: 100px;
color: #fff;
}
.tooltip-trigger:hover {
background: var( --color-primary--hover );
}
.tooltip-content {
position: absolute;
z-index: 1;
right: 0;
padding: 15px;
background-color: var( --color-surface-1 );
border-radius: var( --border-radius--medium );
box-shadow: 0 14px 28px rgba( 0, 0, 0, 0.06 ), 0 10px 10px rgba( 0, 0, 0, 0.06 );
visibility: hidden;
}
.tooltip-content > ol {
margin-top: 0;
margin-left: 1.2rem;
}
.tooltip-content:hover,
.tooltip-trigger:hover + .tooltip-content {
visibility: visible;
}