-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
118 lines (106 loc) · 2.19 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
*{
margin: 0;
padding: 0;
}
body{
background-image: linear-gradient(white, blue);
height: 97vh;
}
.logo img{
width: 50px;
height: 50px;
margin: auto;
margin-top: 20px;
align-items: center;
display: flex;
}
.head h1{
font-size: 24px;
margin: auto;
margin-top: 15px;
margin-bottom: 15px;
text-align: center;
}
.container{
max-width: 900px;
height: 500px;
border-radius: 25px;
margin: auto;
border: 2px solid black;
overflow: auto;
scroll-behavior: smooth;
}
.message{
margin: 10px;
padding: 10px;
}
.container .left{
border: 2px solid black;
border-radius: 20px;
font-size: 20px;
padding: 8px 30px;
float: left;
clear: both;
display: inline;
position: relative;
}
.container .mid{
color: black;
font-weight: 900;
font-size: 20px;
opacity: .6;
border-radius: 20px;
display: flex;
margin: auto;
width: 90%;
padding: 5px 20px;
justify-content: center;
}
.container .right{
background-color: rgb(103, 103, 241);
border: 2px solid black;
border-radius: 20px;
float: right;
font-size: 20px;
padding: 8px 30px;
color: white;
clear: both;
}
.send{
display: flex;
width: 100%;
/* margin: auto; */
margin-top: 5px;
justify-content: center;
}
.send .box .input{
width: 50vw;
font-size: large;
padding: 6px 11px;
display: flex;
background-color: white;
border-left: 2px solid black;
border-top: 2px solid black;
border-bottom: 2px solid black;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
margin: auto;
}
.send .btn{
width: 50px;
border-right: 2px solid black;
border-top: 2px solid black;
border-bottom: 2px solid black;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
background-color: rgb(93, 93, 250);
color: white;
justify-content: center;
align-items: center;
font-size: 14px;
}
.send .btn:hover{
background-color: rgb(61, 61, 224);
color: white;
cursor: pointer;
}