forked from chandler767/JavaScript-Simple-Chat
-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
85 lines (73 loc) · 1.35 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
.flex-container {
display: flex;
}
.flex-child {
flex: 1;
}
.code-block {
display: none;
font-size: small;
}
.flex-child:first-child {
flex: 2;
margin-right: 10px;
margin-top:9px;
background-color: rgb(249, 249, 249);
flex-direction:column;
max-height: 510px;
height:510px;
overflow:auto;
}
@media (min-width: 768px) {
.code-block {
display: block;
}
}
html * {
font-family: 'Poppins';
}
input {
width: 100%;
padding: 6px 15px 6px 15px;
box-sizing: border-box;
border-radius: 12px;
font-size: medium;
}
h1 {
margin: 0;
}
.messageYou {
width: 90%;
padding: 6px 20px;
margin: 8px;
background-color: #c2d3e9;
border-style: solid;
border-color: black;
border-width: 2px;
box-sizing: border-box;
border-top-left-radius: 20px;
border-bottom-right-radius: 20px;
border-bottom-left-radius: 20px;
float: right;
}
.messageThem {
width: 90%;
padding: 6px 20px;
margin: 8px;
background-color: #f3f3f3;
border-style: solid;
border-color: black;
border-width: 2px;
box-sizing: border-box;
border-bottom-left-radius: 20px;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
float: left;
}
.youText {
float: right;
}
.messageTime {
font-size: x-small;
float: right;
}