Spaces:
Runtime error
Runtime error
File size: 1,470 Bytes
a5e87d0 |
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 95 96 |
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
Arial, sans-serif;
margin: auto;
max-width: 60rem;
}
@font-face {
font-family: "Roboto";
src: url(Roboto-Regular.ttf);
}
* {
margin: 0;
padding: 0;
font-family: "Roboto", sans-serif;
line-break: auto;
}
body {
background-color: #343541;
color: #ffff;
height: 100vh;
width: 100vw;
}
*::-webkit-scrollbar {
display: none;
}
* {
-ms-overflow-style: none;
scrollbar-width: none;
}
.cursor {
width: 20px;
height: 25px;
background-color: rgb(232, 221, 221);
animation: blink 1.2s infinite;
}
@keyframes blink {
50% {
opacity: 0;
}
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@media screen and (max-width: 1000px) {
.loader_columns {
flex-direction: column !important;
align-items: center;
}
.input_wrapper {
background-color: rgb(60, 59, 59);
width: 100% !important;
padding: 10px;
margin: 10px;
}
.initial_loader_wrapper {
width: 100% !important;
}
.messages_wrapper {
width: 98% !important;
}
}
@media screen and (max-width: 320px) {
.main_container {
width: 99% !important;
}
.input_wrapper {
background-color: rgb(60, 59, 59);
padding-top: 10px;
width: 100% !important;
}
.initial_loader_wrapper {
width: 100% !important;
}
.messages_wrapper {
width: 98% !important;
}
}
|