-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (69 loc) · 1.17 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
body {
margin: 0;
padding: 0;
}
.heading {
text-align: center;
font-family: sans-serif;
}
.container {
height: 500px;
width: 56%;
margin: auto;
padding: 10px;
background-color: aliceblue;
border: 2px solid #74d4da;
border-radius: 2px;
overflow-y: auto;
}
.message {
margin: 4px 0px;
padding: 4px;
border: 2px solid #c4c0c8;
border-radius: 8px;
background-color: #DCF8C6;
max-width: 80%;
word-wrap: break-word;
font-size: 14px;
font-family: sans-serif
}
.left {
float: left;
clear: both;
}
.right {
float: right;
clear: both;
}
.middle {
text-align: center;
margin: auto;
margin-top: 4px;
clear: both;
max-width: 40%;
background-color: #1effc9b0;
}
.bottomDiv {
margin-top: 30px;
display: flex;
justify-content: center;
align-items: center;
}
.ipt {
height: 20px;
width: 54%;
padding: 4px;
font-size: 14px;
border: 2px solid #c4c0c8;
font-family: sans-serif;
border-radius: 2px;
}
.ipt:focus {
outline: 2px solid #c4c0c8;
}
.image {
height: 32px;
width: 32px;
margin-left: 10px;
cursor: pointer;
}