File size: 1,135 Bytes
0c4cce1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
@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;
}
}
|