NihalGazi commited on
Commit
dd35d4d
·
verified ·
1 Parent(s): 1c177a3

Update static/styles.css

Browse files
Files changed (1) hide show
  1. static/styles.css +12 -16
static/styles.css CHANGED
@@ -1,15 +1,15 @@
1
  body {
2
  font-family: sans-serif;
3
- background: #f8f8f8;
4
  padding: 20px;
5
  }
6
 
7
- #chat-container {
8
- max-width: 500px;
9
  margin: auto;
10
  background: white;
11
- border-radius: 10px;
12
- padding: 20px;
13
  box-shadow: 0 0 10px #ccc;
14
  }
15
 
@@ -17,31 +17,27 @@ body {
17
  font-weight: bold;
18
  text-align: center;
19
  margin-bottom: 10px;
20
- font-size: 1.2em;
21
  }
22
 
23
  #chat {
24
- background: #f0f0f0;
25
- padding: 10px;
26
- overflow-y: auto;
27
  height: 300px;
 
 
 
 
28
  }
29
 
30
- .chat-line {
31
- margin: 8px 0;
32
- }
33
-
34
- .me {
35
  color: blue;
36
  font-weight: bold;
37
  }
38
 
39
- .other {
40
  color: green;
41
  font-weight: bold;
42
  }
43
 
44
- .status {
45
  color: gray;
46
  font-style: italic;
47
  }
 
1
  body {
2
  font-family: sans-serif;
3
+ background: #f0f0f0;
4
  padding: 20px;
5
  }
6
 
7
+ #chatContainer {
8
+ max-width: 400px;
9
  margin: auto;
10
  background: white;
11
+ padding: 15px;
12
+ border-radius: 8px;
13
  box-shadow: 0 0 10px #ccc;
14
  }
15
 
 
17
  font-weight: bold;
18
  text-align: center;
19
  margin-bottom: 10px;
 
20
  }
21
 
22
  #chat {
 
 
 
23
  height: 300px;
24
+ overflow-y: auto;
25
+ border: 1px solid #333;
26
+ background: #f9f9f9;
27
+ padding: 10px;
28
  }
29
 
30
+ #chat .me {
 
 
 
 
31
  color: blue;
32
  font-weight: bold;
33
  }
34
 
35
+ #chat .other {
36
  color: green;
37
  font-weight: bold;
38
  }
39
 
40
+ #chat .status {
41
  color: gray;
42
  font-style: italic;
43
  }