mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
45 lines
715 B
CSS
45 lines
715 B
CSS
body {
|
|
font-family: var(--vscode-editor-font-family);
|
|
margin-left: 3rem;
|
|
}
|
|
|
|
nav {
|
|
margin-bottom: 2.5rem;
|
|
}
|
|
|
|
h2 {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
p {
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.command-wrapper {
|
|
position: relative;
|
|
}
|
|
|
|
.command-wrapper + h2 {
|
|
margin-top: 3rem;
|
|
}
|
|
|
|
.btn-copy {
|
|
background-color: transparent;
|
|
border: 0;
|
|
color: var(--vscode-menu-selectionForeground);
|
|
cursor: pointer;
|
|
padding: 4px 8px;
|
|
position: absolute;
|
|
right: 6px;
|
|
top: 6px;
|
|
}
|
|
|
|
pre {
|
|
background-color: var(--vscode-menu-selectionBackground);
|
|
border-radius: 3px;
|
|
color: var(--vscode-menu-selectionForeground);
|
|
font-size: 1rem;
|
|
margin-bottom: 1.75rem;
|
|
padding: 0.5rem 0.75rem;
|
|
}
|