Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
@@ -1,76 +1,51 @@
|
|
1 |
-
* {
|
2 |
-
box-sizing: border-box;
|
3 |
-
padding: 0;
|
4 |
-
margin: 0;
|
5 |
-
font-family: sans-serif;
|
6 |
-
}
|
7 |
-
|
8 |
-
html,
|
9 |
-
body {
|
10 |
-
height: 100%;
|
11 |
-
}
|
12 |
-
|
13 |
body {
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
#
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
#
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
border:
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
#
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
#
|
55 |
-
|
56 |
-
|
|
|
57 |
cursor: pointer;
|
58 |
}
|
59 |
|
60 |
-
#
|
61 |
-
color: #
|
62 |
}
|
63 |
-
|
64 |
-
.bounding-box {
|
65 |
-
position: absolute;
|
66 |
-
box-sizing: border-box;
|
67 |
-
border: solid 2px;
|
68 |
-
}
|
69 |
-
|
70 |
-
.bounding-box-label {
|
71 |
-
color: white;
|
72 |
-
position: absolute;
|
73 |
-
font-size: 12px;
|
74 |
-
margin: -16px 0 0 -2px;
|
75 |
-
padding: 1px;
|
76 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
body {
|
2 |
+
margin: 0;
|
3 |
+
padding: 0;
|
4 |
+
font-family: Arial, sans-serif;
|
5 |
+
background-color: #000;
|
6 |
+
color: #fff;
|
7 |
+
}
|
8 |
+
|
9 |
+
#chat-container {
|
10 |
+
width: 100%;
|
11 |
+
max-width: 600px;
|
12 |
+
margin: 0 auto;
|
13 |
+
border: 1px solid #444;
|
14 |
+
background-color: #222;
|
15 |
+
padding: 20px;
|
16 |
+
border-radius: 8px;
|
17 |
+
}
|
18 |
+
|
19 |
+
#chat-box {
|
20 |
+
height: 400px;
|
21 |
+
overflow-y: auto;
|
22 |
+
border: 1px solid #444;
|
23 |
+
padding: 10px;
|
24 |
+
margin-bottom: 10px;
|
25 |
+
background-color: #333;
|
26 |
+
border-radius: 4px;
|
27 |
+
}
|
28 |
+
|
29 |
+
#user-input {
|
30 |
+
width: calc(100% - 90px);
|
31 |
+
padding: 10px;
|
32 |
+
margin-right: 10px;
|
33 |
+
border-radius: 4px;
|
34 |
+
border: 1px solid #444;
|
35 |
+
background-color: #333;
|
36 |
+
color: #fff;
|
37 |
+
}
|
38 |
+
|
39 |
+
#send-button {
|
40 |
+
width: 80px;
|
41 |
+
background-color: #555;
|
42 |
+
color: #fff;
|
43 |
+
padding: 10px;
|
44 |
+
border: none;
|
45 |
+
border-radius: 4px;
|
46 |
cursor: pointer;
|
47 |
}
|
48 |
|
49 |
+
#send-button:hover {
|
50 |
+
background-color: #666;
|
51 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|