-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeteorchat.css
More file actions
63 lines (50 loc) · 788 Bytes
/
meteorchat.css
File metadata and controls
63 lines (50 loc) · 788 Bytes
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
/* CSS declarations go here */
.messages-container
{
}
h3
{
text-align: center;
padding-top: 40px;
}
.input-container input
{
width: 100%;
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box; /* Firefox, other Gecko */
box-sizing: border-box; /* Opera/IE 8+ */
padding: 15px 15px 15px 15px;
height: auto;
}
#login-buttons
{
float: right;
margin-right: 80px;
margin-top: 20px;
}
.message
{
padding: 8px 5px 8px 30px;
}
/* Large desktop */
@media (min-width: 1200px)
{
.messages-container
{
max-height: 500px;
overflow: scroll;
}
}
/* Landscape phone to portrait tablet */
@media (max-width: 767px)
{
.messages-container
{
height: auto;
width: 100%;
}
.container
{
width: auto !important;
}
}