diff --git a/_layouts/default.html b/_layouts/default.html index 1df116f..23b42b1 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -1825,6 +1825,43 @@ .dark-mode .grok-mode-option:hover { background: rgba(16, 185, 129, 0.2); } + + .cursor-logo { + display: flex; + align-items: center; + gap: 6px; + color: var(--accent-color); + opacity: 0.8; + text-decoration: none; + transition: all 0.2s ease; + font-size: 0.85rem; + margin-right: 8px; + } + + .cursor-logo:hover { + opacity: 1; + transform: translateY(-1px); + } + + .cursor-logo svg { + width: 16px; + height: 16px; + } + + /* Style for the Cursor AI logo paths in dark mode */ + .cursor-logo path[fill="#fff"] { + transition: fill 0.2s ease; + } + + .dark-mode .cursor-logo path[fill="#fff"] { + fill: #2d2d2d; + } + + @media (max-width: 768px) { + .cursor-logo span { + display: none; + } + } {% include head-custom.html %} @@ -1875,6 +1912,16 @@