Update style.css
Browse files
style.css
CHANGED
|
@@ -11,14 +11,14 @@ body {
|
|
| 11 |
flex-direction: column;
|
| 12 |
}
|
| 13 |
|
| 14 |
-
/*
|
| 15 |
#auth-container {
|
| 16 |
background: white;
|
| 17 |
border-radius: 12px;
|
| 18 |
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
|
| 19 |
padding: 40px 30px;
|
| 20 |
text-align: center;
|
| 21 |
-
width:
|
| 22 |
}
|
| 23 |
|
| 24 |
#auth-container h2 {
|
|
@@ -45,6 +45,19 @@ body {
|
|
| 45 |
background: #0056b3;
|
| 46 |
}
|
| 47 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
/* Chat container */
|
| 49 |
#chat-container {
|
| 50 |
width: 80%;
|
|
@@ -69,7 +82,7 @@ body {
|
|
| 69 |
flex-direction: column;
|
| 70 |
}
|
| 71 |
|
| 72 |
-
/*
|
| 73 |
.message {
|
| 74 |
margin: 8px 0;
|
| 75 |
padding: 10px 14px;
|
|
@@ -93,7 +106,7 @@ body {
|
|
| 93 |
border-bottom-left-radius: 2px;
|
| 94 |
}
|
| 95 |
|
| 96 |
-
/* Chat input
|
| 97 |
#chat-input {
|
| 98 |
display: flex;
|
| 99 |
gap: 10px;
|
|
@@ -144,7 +157,7 @@ button:hover {
|
|
| 144 |
border-radius: 3px;
|
| 145 |
}
|
| 146 |
|
| 147 |
-
/*
|
| 148 |
@keyframes fadeIn {
|
| 149 |
from { opacity: 0; transform: translateY(5px); }
|
| 150 |
to { opacity: 1; transform: translateY(0); }
|
|
|
|
| 11 |
flex-direction: column;
|
| 12 |
}
|
| 13 |
|
| 14 |
+
/* Authentication screen */
|
| 15 |
#auth-container {
|
| 16 |
background: white;
|
| 17 |
border-radius: 12px;
|
| 18 |
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
|
| 19 |
padding: 40px 30px;
|
| 20 |
text-align: center;
|
| 21 |
+
width: 340px;
|
| 22 |
}
|
| 23 |
|
| 24 |
#auth-container h2 {
|
|
|
|
| 45 |
background: #0056b3;
|
| 46 |
}
|
| 47 |
|
| 48 |
+
#auth-status {
|
| 49 |
+
text-align: left;
|
| 50 |
+
font-size: 12px;
|
| 51 |
+
color: #333;
|
| 52 |
+
margin-top: 15px;
|
| 53 |
+
background: #f9f9f9;
|
| 54 |
+
border: 1px solid #ddd;
|
| 55 |
+
padding: 10px;
|
| 56 |
+
border-radius: 8px;
|
| 57 |
+
max-height: 200px;
|
| 58 |
+
overflow-y: auto;
|
| 59 |
+
}
|
| 60 |
+
|
| 61 |
/* Chat container */
|
| 62 |
#chat-container {
|
| 63 |
width: 80%;
|
|
|
|
| 82 |
flex-direction: column;
|
| 83 |
}
|
| 84 |
|
| 85 |
+
/* Message styles */
|
| 86 |
.message {
|
| 87 |
margin: 8px 0;
|
| 88 |
padding: 10px 14px;
|
|
|
|
| 106 |
border-bottom-left-radius: 2px;
|
| 107 |
}
|
| 108 |
|
| 109 |
+
/* Chat input */
|
| 110 |
#chat-input {
|
| 111 |
display: flex;
|
| 112 |
gap: 10px;
|
|
|
|
| 157 |
border-radius: 3px;
|
| 158 |
}
|
| 159 |
|
| 160 |
+
/* Animation */
|
| 161 |
@keyframes fadeIn {
|
| 162 |
from { opacity: 0; transform: translateY(5px); }
|
| 163 |
to { opacity: 1; transform: translateY(0); }
|