summaryrefslogtreecommitdiff
path: root/demos/chat/protected/pages/style.css
blob: 884aff7c6bb32e7c77148b00e9602ffcbb9f7e43 (plain)
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
body
{
	width: 700px;
	margin: 2em auto;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
}

h1
{
	font-size: 1.5em;
	color: #444;
}

.login
{
	width: 500px;
	margin: 1em auto;
}

.login .username
{
	margin: 1em;
}

.login .login-button
{
	padding-left: 7em;
}

.messages
{
	width: 500px;
	height: 300px;
	float: left;	
	border: 1px solid ButtonFace;
	overflow: auto;
}

.messages .message
{
	margin: 0.4em 1em;
	font-size: 0.85em;
}

.user-list
{
	margin-left: 2px;
	float: left;
	width: 180px;
	height: 300px;
	border: 1px solid ButtonFace;
	overflow: auto;
	font-size: 0.85em;
}

.message-input
{
	float: left;
}

.message-input textarea
{
	margin-top: 3px;
	padding: 0.4em 0.2em;			
	width: 493px;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 0.85em;
	height: 40px;
}

.send-button
{
	margin: 0.5em;
}

#footer
{
	clear: both;
	font-size: 0.7em;
	text-align: center;
	padding-top: 50px;
}