forked from mirrors/thatmattlove-hyperglass
25 lines
684 B
CSS
25 lines
684 B
CSS
.code {
|
|
background-color: var(--ifm-code-background);
|
|
color: var(--ifm-code-color);
|
|
font-family: var(--ifm-font-family-monospace);
|
|
font-size: var(--ifm-code-font-size);
|
|
border-radius: var(--ifm-code-border-radius);
|
|
margin: 0;
|
|
padding: var(--ifm-code-padding-vertical) var(--ifm-code-padding-horizontal);
|
|
font-style: normal;
|
|
}
|
|
|
|
.color {
|
|
border-radius: var(--ifm-global-radius);
|
|
display: inline-flex;
|
|
height: 1.5rem;
|
|
width: 1.5rem;
|
|
margin-right: 0.5rem;
|
|
padding: var(--ifm-code-padding-vertical) var(--ifm-code-padding-horizontal);
|
|
}
|
|
|
|
.colorCode {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|