-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
85 lines (70 loc) · 1.02 KB
/
style.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
* {
padding: 0px;
margin: 0px;
}
#wrapper {
width: 80%;
margin: 10px auto;
padding: 20px;
}
h1 {
padding-left: 5%;
}
.h1 {
color: red;
}
.chat_wrapper {
width: 90%;
margin: 10px auto;
background-color: rgb(255, 255, 255);
border-radius: 20px;
}
#chat {
min-height: 500px;
height: 500px;
overflow: auto;
padding: 10px;
background-color: #FFF;
}
.textarea {
color: white;
font-size: 20px;
width: 100%;
height: 100px;
background-color: #222;
outline: none;
border-radius: 10px;
padding: 10px;
width: 98%;
}
.message {
padding: 5px 0px 5px 0px;
font-weight: bold;
margin: 10px;
}
.message p {
font-size: 25px;
}
.message-y {
text-align: right;
}
.message-x {}
.message strong {
float: left;
}
.container {
width: 50%;
}
.container input {
width: 100%;
border-radius: 10px;
height: 30px;
align-items: center;
outline: none;
}
form {
text-align: center;
}
.container {
margin: auto;
}