Spaces:
Running
Running
File size: 1,915 Bytes
ce1ab17 8ee4cb7 ce1ab17 |
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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
/*
* SPDX-FileCopyrightText: Hadad <hadad@linuxmail.org>
* SPDX-License-Identifier: Apache-2.0
*/
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html, body {
width: 100%;
height: 100%;
overflow-x: hidden;
font-family: 'Inter', sans-serif;
font-size: 1rem;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
display: flex;
flex-direction: column;
background-color: var(--background-dark);
color: var(--text-dark);
overflow: hidden;
word-wrap: break-word;
}
:root {
--color-primary: #3b82f6;
--background-dark: #0f0f0f;
--background-light: #fff;
--text-dark: #e5e7eb;
--text-light: #111;
--white-line-color: #ffffff;
--header-height: 3.5rem;
--footer-height: 5rem;
--transition-speed: 0.3s;
--border-radius: 1rem;
--bubble-radius: 1rem;
--prompt-radius: 1rem;
}
main {
flex: 1;
display: flex;
flex-direction: column;
margin-top: var(--header-height);
height: calc(100vh - var(--header-height));
overflow: hidden;
}
#initialContent {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
max-width: 100%;
width: 100%;
height: 100%;
padding: 1.5rem 1rem;
box-sizing: border-box;
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-word;
animation: fadeIn 0.8s ease-out forwards;
}
.title {
font-size: clamp(1.5rem, 4vw, 2.5rem);
font-weight: 800;
color: #eaeef8;
margin-bottom: 1.5rem;
word-break: break-word;
overflow-wrap: break-word;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
animation: slideInUp 0.6s ease-out forwards;
}
.system {
text-align: center;
margin-top: 5rem;
margin-bottom: 5rem;
font-size: 0.7rem;
color: #9ca3af;
word-break: break-word;
overflow-wrap: break-word;
max-width: 600px;
line-height: 1.6;
animation: fadeIn 1s ease-out 0.6s forwards;
opacity: 0;
} |