-
Notifications
You must be signed in to change notification settings - Fork 0
/
chatroom.css
70 lines (64 loc) · 1.07 KB
/
chatroom.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
body{
margin: 0;
margin-bottom: 5px;
background-color: white;
}
#chat-container{
margin:0 auto;
padding: 0px;
}
#textblock{
margin: 0 auto;
height: 80%;
padding-left: 5px;
list-style: none;
/* border-left: 1px solid black;
border-right: 1px solid black;
border-top: 1px solid black;*/
}
div ul{
overflow:hidden;
overflow-y:scroll;
}
li{
font-family: sans-serif;
padding: 5px;
font-weight: lighter;
padding-bottom: 5px;
padding-left: 5px;
margin-left: 0px;
margin-top: 2px;
margin-bottom: 5px;
background-color: #2ECC71;
color: white;
width: 60%;
border-radius: 10px;
}
.send_button{
text-transform: uppercase;
font-family: sans-serif;
width: 20%;
height: 20%;
font-weight: lighter;
font-size: 12px;
margin: 0 auto;
border: 1px solid #5D6D7E;
background-color: #5D6D7E ;
color: white;
}
.send_button:active{
font-size: 10px;
margin: 0 auto;
float: left;
border: 1px solid #5D6D7E;
border-radius: 10px;
}
.text_input{
font-family: sans-serif;
font-size: 20px;
width:80%;
background: white;
height: 20%;
float: left;
border: 2px solid #5D6D7E ;
}