Spaces:
Sleeping
Sleeping
Update static/styles.css
Browse files- static/styles.css +43 -43
static/styles.css
CHANGED
|
@@ -38,29 +38,14 @@ header p {
|
|
| 38 |
color: #888;
|
| 39 |
}
|
| 40 |
|
| 41 |
-
/*
|
| 42 |
-
.
|
| 43 |
-
flex: 1;
|
| 44 |
display: flex;
|
| 45 |
-
|
| 46 |
-
}
|
| 47 |
-
|
| 48 |
-
#messages {
|
| 49 |
margin-bottom: 20px;
|
| 50 |
-
padding: 15px;
|
| 51 |
-
background-color: #F9F9F9;
|
| 52 |
-
border-radius: 15px;
|
| 53 |
-
overflow-y: auto;
|
| 54 |
-
max-height: 350px;
|
| 55 |
-
}
|
| 56 |
-
|
| 57 |
-
#message-form {
|
| 58 |
-
display: flex;
|
| 59 |
-
gap: 15px;
|
| 60 |
-
justify-content: space-between;
|
| 61 |
}
|
| 62 |
|
| 63 |
-
|
| 64 |
flex: 1;
|
| 65 |
padding: 15px;
|
| 66 |
font-size: 1rem;
|
|
@@ -70,40 +55,52 @@ header p {
|
|
| 70 |
transition: all 0.3s ease;
|
| 71 |
}
|
| 72 |
|
| 73 |
-
|
| 74 |
border-color: #6B4FE2;
|
| 75 |
}
|
| 76 |
|
| 77 |
-
|
| 78 |
-
background-color: #6B4FE2;
|
| 79 |
-
color: white;
|
| 80 |
-
border: none;
|
| 81 |
-
border-radius: 50%;
|
| 82 |
-
padding: 12px 20px;
|
| 83 |
-
cursor: pointer;
|
| 84 |
-
transition: all 0.3s ease;
|
| 85 |
display: flex;
|
|
|
|
| 86 |
align-items: center;
|
| 87 |
-
justify-content: center;
|
| 88 |
}
|
| 89 |
|
| 90 |
-
|
| 91 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 92 |
}
|
| 93 |
|
| 94 |
-
|
| 95 |
-
|
|
|
|
| 96 |
}
|
| 97 |
|
| 98 |
-
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
|
| 102 |
-
|
| 103 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 104 |
}
|
| 105 |
|
| 106 |
-
/* Message Styling */
|
| 107 |
.user-message, .bot-message {
|
| 108 |
background-color: #F1F1F1;
|
| 109 |
padding: 15px;
|
|
@@ -124,7 +121,10 @@ footer {
|
|
| 124 |
align-self: flex-start;
|
| 125 |
}
|
| 126 |
|
| 127 |
-
|
| 128 |
-
|
| 129 |
-
|
|
|
|
|
|
|
|
|
|
| 130 |
}
|
|
|
|
| 38 |
color: #888;
|
| 39 |
}
|
| 40 |
|
| 41 |
+
/* Input Section */
|
| 42 |
+
.input-section {
|
|
|
|
| 43 |
display: flex;
|
| 44 |
+
gap: 10px;
|
|
|
|
|
|
|
|
|
|
| 45 |
margin-bottom: 20px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 46 |
}
|
| 47 |
|
| 48 |
+
.input-section input {
|
| 49 |
flex: 1;
|
| 50 |
padding: 15px;
|
| 51 |
font-size: 1rem;
|
|
|
|
| 55 |
transition: all 0.3s ease;
|
| 56 |
}
|
| 57 |
|
| 58 |
+
.input-section input:focus {
|
| 59 |
border-color: #6B4FE2;
|
| 60 |
}
|
| 61 |
|
| 62 |
+
.buttons {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
display: flex;
|
| 64 |
+
gap: 10px;
|
| 65 |
align-items: center;
|
|
|
|
| 66 |
}
|
| 67 |
|
| 68 |
+
.button {
|
| 69 |
+
padding: 10px 20px;
|
| 70 |
+
font-size: 1rem;
|
| 71 |
+
border-radius: 12px;
|
| 72 |
+
cursor: pointer;
|
| 73 |
+
transition: all 0.3s ease;
|
| 74 |
}
|
| 75 |
|
| 76 |
+
.clear-btn {
|
| 77 |
+
background-color: #D1D1D1;
|
| 78 |
+
color: #333;
|
| 79 |
}
|
| 80 |
|
| 81 |
+
.clear-btn:hover {
|
| 82 |
+
background-color: #B5B5B5;
|
| 83 |
+
}
|
| 84 |
+
|
| 85 |
+
.submit-btn {
|
| 86 |
+
background-color: #FF7F32;
|
| 87 |
+
color: white;
|
| 88 |
+
}
|
| 89 |
+
|
| 90 |
+
.submit-btn:hover {
|
| 91 |
+
background-color: #FF5A00;
|
| 92 |
+
}
|
| 93 |
+
|
| 94 |
+
/* Messages Section */
|
| 95 |
+
.messages {
|
| 96 |
+
margin-top: 20px;
|
| 97 |
+
padding: 15px;
|
| 98 |
+
background-color: #F9F9F9;
|
| 99 |
+
border-radius: 15px;
|
| 100 |
+
overflow-y: auto;
|
| 101 |
+
max-height: 350px;
|
| 102 |
}
|
| 103 |
|
|
|
|
| 104 |
.user-message, .bot-message {
|
| 105 |
background-color: #F1F1F1;
|
| 106 |
padding: 15px;
|
|
|
|
| 121 |
align-self: flex-start;
|
| 122 |
}
|
| 123 |
|
| 124 |
+
/* Footer */
|
| 125 |
+
footer {
|
| 126 |
+
text-align: center;
|
| 127 |
+
font-size: 1.1rem;
|
| 128 |
+
color: #888;
|
| 129 |
+
padding-top: 10px;
|
| 130 |
}
|