mirror of
https://github.com/f/awesome-chatgpt-prompts.git
synced 2025-05-22 18:02:03 +00:00
deploy: 38133d474775e4475604ab8e380857b94efbd654
This commit is contained in:
parent
a829fe1589
commit
0214e852ec
16
index.html
16
index.html
@ -21,13 +21,15 @@
|
|||||||
{"@context":"https://schema.org","@type":"WebSite","description":"This repo includes ChatGPT prompt curation to use ChatGPT and other LLM tools better.","headline":"Awesome ChatGPT Prompts","name":"Awesome ChatGPT Prompts","url":"/"}</script>
|
{"@context":"https://schema.org","@type":"WebSite","description":"This repo includes ChatGPT prompt curation to use ChatGPT and other LLM tools better.","headline":"Awesome ChatGPT Prompts","name":"Awesome ChatGPT Prompts","url":"/"}</script>
|
||||||
<!-- End Jekyll SEO tag -->
|
<!-- End Jekyll SEO tag -->
|
||||||
|
|
||||||
<link rel="stylesheet" href="/assets/css/style.css?v=7c65334f534942a277b6615a8b5dbed4f6f41adb">
|
<link rel="stylesheet" href="/assets/css/style.css?v=38133d474775e4475604ab8e380857b94efbd654">
|
||||||
<style>
|
<style>
|
||||||
:root {
|
:root {
|
||||||
--bg-color-light: #ffffff;
|
--bg-color-light: #ffffff;
|
||||||
--bg-color-dark: #1a1a1a;
|
--bg-color-dark: #1a1a1a;
|
||||||
--text-color-light: #000000;
|
--text-color-light: #000000;
|
||||||
--text-color-dark: #ffffff;
|
--text-color-dark: #ffffff;
|
||||||
|
--header-height: 145px;
|
||||||
|
--footer-height: 145px;
|
||||||
--sidebar-width: 300px;
|
--sidebar-width: 300px;
|
||||||
--accent-color: #10b981;
|
--accent-color: #10b981;
|
||||||
--accent-color-hover: #059669;
|
--accent-color-hover: #059669;
|
||||||
@ -38,6 +40,7 @@
|
|||||||
color: var(--text-color-light);
|
color: var(--text-color-light);
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
overflow-y: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
body.dark-mode {
|
body.dark-mode {
|
||||||
@ -79,6 +82,7 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
height: var(--header-height);
|
||||||
}
|
}
|
||||||
|
|
||||||
.dark-mode .site-header {
|
.dark-mode .site-header {
|
||||||
@ -156,6 +160,7 @@
|
|||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
z-index: 100;
|
z-index: 100;
|
||||||
|
height: var(--footer-height);
|
||||||
}
|
}
|
||||||
|
|
||||||
.dark-mode .site-footer {
|
.dark-mode .site-footer {
|
||||||
@ -511,7 +516,7 @@
|
|||||||
width: var(--sidebar-width);
|
width: var(--sidebar-width);
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
border-right: 1px solid #e1e4e8;
|
border-right: 1px solid #e1e4e8;
|
||||||
height: calc(100vh - 140px);
|
height: calc(100vh - var(--header-height) - var(--footer-height));
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
background-color: var(--bg-color-light);
|
background-color: var(--bg-color-light);
|
||||||
}
|
}
|
||||||
@ -519,17 +524,22 @@
|
|||||||
.dark-mode .sidebar {
|
.dark-mode .sidebar {
|
||||||
background-color: var(--bg-color-dark);
|
background-color: var(--bg-color-dark);
|
||||||
border-right-color: #2d2d2d;
|
border-right-color: #2d2d2d;
|
||||||
|
scrollbar-color: #2d2d2d transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
.main-content {
|
.main-content {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
height: calc(100vh - 140px);
|
height: calc(100vh - var(--header-height) - var(--footer-height));
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.dark-mode .main-content {
|
||||||
|
scrollbar-color: #2d2d2d transparent;
|
||||||
|
}
|
||||||
|
|
||||||
.main-content-header {
|
.main-content-header {
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: 0;
|
top: 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user