mirror of
https://github.com/f/awesome-chatgpt-prompts.git
synced 2025-03-28 16:48:02 -04:00
deploy: 19f019eaebdff577f701607101d6117df5dac44b
This commit is contained in:
parent
f5d4209b37
commit
67c7769126
@ -23,9 +23,9 @@
|
||||
|
||||
|
||||
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="/style.css?v=088bf500e2e381b55b4bda7a37f0a23f7a6e08b2">
|
||||
<link rel="stylesheet" href="/style.css?v=19f019eaebdff577f701607101d6117df5dac44b">
|
||||
</head>
|
||||
<body>
|
||||
<body class="">
|
||||
<div class="layout-wrapper">
|
||||
<!-- Copilot Suggestion Modal Backdrop -->
|
||||
<div class="copilot-suggestion-backdrop"></div>
|
||||
|
@ -288,6 +288,14 @@ body.dark-mode {
|
||||
gap: 8px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
body.vibe .site-header {
|
||||
height: auto !important;
|
||||
}
|
||||
|
||||
body.vibe .sidebar {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.header-right {
|
||||
position: absolute;
|
||||
|
@ -5,27 +5,27 @@
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<title>prompts.chat/vibe — awesome AI prompts</title>
|
||||
<title>/vibe — awesome AI prompts</title>
|
||||
<!-- Begin Jekyll SEO tag v2.8.0 -->
|
||||
<title>prompts.chat/vibe | prompts.chat</title>
|
||||
<title>/vibe | prompts.chat</title>
|
||||
<meta name="generator" content="Jekyll v3.10.0" />
|
||||
<meta property="og:title" content="prompts.chat/vibe" />
|
||||
<meta property="og:title" content="/vibe" />
|
||||
<meta property="og:locale" content="en_US" />
|
||||
<meta name="description" content="This repo includes ChatGPT prompt curation to use ChatGPT and other LLM tools better." />
|
||||
<meta property="og:description" content="This repo includes ChatGPT prompt curation to use ChatGPT and other LLM tools better." />
|
||||
<meta property="og:site_name" content="prompts.chat" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta property="twitter:title" content="prompts.chat/vibe" />
|
||||
<meta property="twitter:title" content="/vibe" />
|
||||
<script type="application/ld+json">
|
||||
{"@context":"https://schema.org","@type":"WebPage","description":"This repo includes ChatGPT prompt curation to use ChatGPT and other LLM tools better.","headline":"prompts.chat/vibe","url":"/vibe/"}</script>
|
||||
{"@context":"https://schema.org","@type":"WebPage","description":"This repo includes ChatGPT prompt curation to use ChatGPT and other LLM tools better.","headline":"/vibe","url":"/vibe/"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="/style.css?v=088bf500e2e381b55b4bda7a37f0a23f7a6e08b2">
|
||||
<link rel="stylesheet" href="/style.css?v=19f019eaebdff577f701607101d6117df5dac44b">
|
||||
</head>
|
||||
<body>
|
||||
<body class="vibe">
|
||||
<div class="layout-wrapper">
|
||||
<!-- Copilot Suggestion Modal Backdrop -->
|
||||
<div class="copilot-suggestion-backdrop"></div>
|
||||
@ -47,7 +47,7 @@
|
||||
</div>
|
||||
<header class="site-header">
|
||||
<div class="header-left">
|
||||
<h1 class="site-title">prompts.chat/vibe</h1>
|
||||
<h1 class="site-title">/vibe</h1>
|
||||
<p class="site-slogan">awesome vibe coding prompts to help you build simple apps
|
||||
|
||||
</p>
|
||||
|
@ -252,11 +252,11 @@ document.addEventListener('DOMContentLoaded', () => {
|
||||
function toggleDarkMode() {
|
||||
document.body.classList.toggle('dark-mode');
|
||||
const isDark = document.body.classList.contains('dark-mode');
|
||||
localStorage.setItem('darkMode', isDark);
|
||||
localStorage.setItem('dark-mode', isDark);
|
||||
}
|
||||
|
||||
// Initialize dark mode from localStorage
|
||||
const savedDarkMode = localStorage.getItem('darkMode') === 'true';
|
||||
const savedDarkMode = localStorage.getItem('dark-mode') === 'true';
|
||||
if (savedDarkMode) {
|
||||
document.body.classList.add('dark-mode');
|
||||
}
|
||||
|
@ -1,43 +0,0 @@
|
||||
.contribute-card {
|
||||
background: linear-gradient(45deg, var(--accent-color) 0%, var(--accent-color-light) 100%);
|
||||
color: white !important;
|
||||
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
||||
}
|
||||
|
||||
.contribute-card:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.contribute-card .prompt-title {
|
||||
color: white;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.contribute-card .prompt-content {
|
||||
color: rgba(255, 255, 255, 0.9);
|
||||
margin: 1rem 0;
|
||||
}
|
||||
|
||||
.contribute-card .contributor-badge {
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
color: white;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.contribute-card .contributor-badge:hover {
|
||||
background-color: rgba(255, 255, 255, 0.3);
|
||||
}
|
||||
|
||||
.contribute-card svg {
|
||||
stroke: white;
|
||||
}
|
||||
|
||||
/* Dark mode adjustments */
|
||||
.dark-mode .contribute-card {
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.dark-mode .contribute-card:hover {
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user