-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathview.css
50 lines (37 loc) · 848 Bytes
/
view.css
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
/* CSS for view.html Chrome Extension */
/*
Show a list of chat logs
Each chat log has a list of messages in it
The chat log's title is the name of the chat log and is larger and bolded
The messages are displayed as rectangular sub items
*/
/* General */
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.42857143;
color: #333;
background-color: #fff;
}
/* Chat log list */
.chat-log-list {
list-style-type: none;
padding: 0;
margin: 0;
}
.chat-log-list-item {
padding: 10px;
margin: 10px;
border: 1px solid #ddd;
border-radius: 4px;
}
.chat-log-list-item-title {
font-size: 18px;
font-weight: bold;
}
.message-item {
padding: 10px;
margin: 10px;
border: 1px solid #ddd;
border-radius: 4px;
}