File size: 1,194 Bytes
2df0a0c | 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 | /* General styles */
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #121212;
color: #e0e0e0;
}
header {
background-color: #2a2a2a;
padding: 10px 20px;
text-align: center;
border-bottom: 1px solid #333;
color: #fff;
}
main {
padding: 10px;
}
/* Loading spinner */
#loading {
display: none;
text-align: center;
margin-top: 50px;
}
.spinner {
border: 4px solid #444;
border-top: 4px solid #1a73e8;
border-radius: 50%;
width: 30px;
height: 30px;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/* Chat list */
.chat {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #1e1e1e;
padding: 15px;
border-radius: 8px;
margin-bottom: 10px;
cursor: pointer;
transition: background-color 0.2s ease;
}
.chat:hover {
background-color: #2c2c2c;
}
.chat-info h2 {
margin: 0;
font-size: 1rem;
font-weight: bold;
color: #fff;
}
.chat-info p {
margin: 5px 0 0;
font-size: 0.9rem;
color: #aaa;
} |