mirror of
https://github.com/shane-lamb/obsidian-llm-docs.git
synced 2026-07-22 05:44:55 +00:00
76 lines
1.1 KiB
CSS
76 lines
1.1 KiB
CSS
/*
|
|
|
|
This CSS file will be included with your plugin, and
|
|
available in the app when your plugin is enabled.
|
|
|
|
If your plugin does not need CSS, delete this file.
|
|
|
|
*/
|
|
.llmdocs-heading-system {
|
|
color: var(--color-cyan);
|
|
}
|
|
|
|
.llmdocs-heading-user {
|
|
color: var(--color-green);
|
|
}
|
|
|
|
.llmdocs-heading-assistant {
|
|
color: var(--color-cyan);
|
|
}
|
|
|
|
.llmdocs-footer {
|
|
position: relative;
|
|
display: block;
|
|
}
|
|
|
|
.llmdocs-complete-button {
|
|
position: absolute;
|
|
top: 100%;
|
|
margin-top: 1em;
|
|
}
|
|
|
|
.llmdocs-loading-indicator {
|
|
position: absolute;
|
|
top: 100%;
|
|
margin-top: 0.2em;
|
|
}
|
|
|
|
@keyframes rotate90 {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
25% {
|
|
transform: rotate(90deg);
|
|
}
|
|
50% {
|
|
transform: rotate(180deg);
|
|
}
|
|
75% {
|
|
transform: rotate(270deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.llmdocs-loading-indicator svg {
|
|
padding-bottom: 14%; /* gives a better center for rotation */
|
|
opacity: 50%;
|
|
animation: rotate90 2s steps(1) infinite;
|
|
}
|
|
|
|
.llmdocs-suggest-item-title {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.llmdocs-suggest-item-subtext {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.llmdocs-suggest-item-title {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.llmdocs-suggest-item-subtext {
|
|
color: var(--text-muted);
|
|
}
|