zed/docs/theme/plugins.css
Danilo Leal c02ea54130
docs: Update typefaces and some other styles (#52992)
Update the heading typeface to use IBM Plex Serif, the code typeface to
use Lilex (IBM Plex Mono), and pull them from the zed.dev CDN. Also
added some stray design adjustments here and there.

Release Notes:

- N/A
2026-04-02 11:47:22 -03:00

45 lines
892 B
CSS

kbd.keybinding {
background-color: var(--keybinding-bg);
padding: 4px 4px 6px 4px;
border-radius: 4px;
font-family: var(--mono-font);
display: inline-block;
margin: 0 2px;
}
#copy-markdown-toggle i {
font-weight: 500 !important;
-webkit-text-stroke: 0.5px currentColor;
}
.copy-toast {
position: fixed;
top: 72px;
right: 16px;
padding: 12px 16px;
border-radius: 4px;
font-size: 14px;
font-weight: 500;
color: var(--fg);
background: var(--toast-bg);
border: 1px solid var(--toast-border);
z-index: 1000;
opacity: 0;
transform: translateY(-10px);
transition: all 0.1s ease-in-out;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
max-width: 280px;
}
.copy-toast.success {
border-color: var(--toast-border-success);
}
.copy-toast.error {
border-color: var(--toast-border-error);
}
.copy-toast.show {
opacity: 1;
transform: translateY(0);
}