-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeteor-chat.css
91 lines (80 loc) · 1.21 KB
/
meteor-chat.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
* {
font-family: sans-serif;
}
#main {
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
}
.chatbox {
background-color: black;
position: absolute;
top: 5px;
left: 5px;
right: 5px;
bottom: 5px;
}
.history {
background-color: gray;
position: absolute;
top: 5px;
left: 5px;
right: 5px;
bottom: 47px;
overflow-y: scroll;
}
.controls {
background-color: rgb(95, 154, 201);
position: absolute;
padding: 2px;
padding-left: 5px;
height: 35px;
left: 5px;
right: 5px;
bottom: 5px;
}
.chat-input {
background-color: rgb(247, 250, 209);
width: 100%;
max-width: 400px;
}
input, button {
font-size: 1.4em;
}
span.chat {
background-color: rgb(247, 250, 209);
display: block;
padding: 5px;
padding-left: 7px;
}
span.chat-author {
font-size: 1.2em;
font-weight: bold;
margin-right: 7px;
}
span.chat-message {
padding: 2px;
}
.data-preview {
background-color: white;
position: absolute;
z-index: 5000;
top: 10px;
right: 10px;
padding: 5px;
}
.login {
padding: 10px;
background-color: #AAAAAA;
width: 100%;
max-width: 400px;
height: 200px;
margin: auto;
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
}