mirror of
https://github.com/Balshgit/gpt_chat_bot.git
synced 2025-09-11 22:30:41 +03:00
71 lines
1.1 KiB
CSS
71 lines
1.1 KiB
CSS
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
* {
|
|
--font-1: "Inter", sans-serif;
|
|
--section-gap: 24px;
|
|
--border-radius-1: 8px;
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
font-family: var(--font-1);
|
|
}
|
|
|
|
.theme-light {
|
|
--colour-1: #f5f5f5;
|
|
--colour-2: #000000;
|
|
--colour-3: #474747;
|
|
--colour-4: #949494;
|
|
--colour-5: #ebebeb;
|
|
--colour-6: #dadada;
|
|
|
|
--accent: #3a3a3a;
|
|
--blur-bg: #ffffff;
|
|
--blur-border: #dbdbdb;
|
|
--user-input: #282828;
|
|
--conversations: #666666;
|
|
}
|
|
|
|
.theme-dark {
|
|
--colour-1: #181818;
|
|
--colour-2: #ccc;
|
|
--colour-3: #dadada;
|
|
--colour-4: #f0f0f0;
|
|
--colour-5: #181818;
|
|
--colour-6: #242424;
|
|
|
|
--accent: #151718;
|
|
--blur-bg: #242627;
|
|
--blur-border: #242627;
|
|
--user-input: #f5f5f5;
|
|
--conversations: #555555;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
background: var(--colour-1);
|
|
color: var(--colour-3);
|
|
}
|
|
|
|
ol,
|
|
ul {
|
|
padding-left: 20px;
|
|
}
|
|
|
|
.shown {
|
|
display: flex !important;
|
|
}
|
|
|
|
a:-webkit-any-link {
|
|
color: var(--accent);
|
|
}
|
|
|
|
pre {
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
@media screen and (max-height: 720px) {
|
|
:root {
|
|
--section-gap: 16px;
|
|
}
|
|
}
|