-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
78 lines (68 loc) · 1.27 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
body {
background-image: linear-gradient( darkslategray, lightgray);
height: 100%;
}
nav {
padding-bottom: 80px;
}
nav h1 {
position: absolute;
text-align: center;
color: #fff;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight: 800;
font-size: 23px;
padding-left: 25%;
}
.image img {
width: 60px;
height: 60px;
border-radius: 30px;
display: block;
margin: auto;
}
.container {
max-width: 1000px;
margin: auto;
height: 80vh;
font-size: 18px;
font-weight: 900;
border: 1px solid white;
border-radius: 10px;
overflow-y: auto;
margin-bottom: 30px;
}
.message {
background-color: white;
margin: 20px 10px;
border: 1px solid black;
border-radius: 5px;
padding-left: 20px;
padding-right: 20px;
}
.left {
float: left;
clear: both;
}
.right {
float: right;
clear: both;
}
#sendcontainer {
display: block;
margin: auto;
max-width: 1140px;
text-align: center;
}
#messageinp {
width: 80%;
border: 1px solid black;
border-radius: 8px;
height: 30px;
}
.btn {
cursor: pointer;
height: 34px;
border-radius: 5px;
width: 80px;
}