-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.css
56 lines (50 loc) · 827 Bytes
/
app.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
.messages
{
margin-bottom: 100px;
margin-top: 50px;
margin-left: 200px;
}
.message
{
border-style: solid;
border-width: 1px 0px 1px 0px;
border-color: lightgray;
background-color: azure;
padding: 10px;
}
.sayBox
{
width: 100%;
background-color: lightyellow;
position: fixed;
bottom: 0;
height: 30px;
padding: 10px;
margin-left: 201px;
}
.sayInput {
width: 75%;
}
.header
{
width: 100%;
position: fixed;
top: 0;
height: 50px;
background-color: honeydew;
}
.rooms {
position: fixed;
top: 50px;
width: 200px;
background-color: blanchedalmond;
border-right: 1px;
border-top: 1px;
border-width: 1px;
border-style: solid;
height: 100%;
}
input.name {
width: 150px;
margin-left: 10px;
}