-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (53 loc) · 1.23 KB
/
style.css
File metadata and controls
59 lines (53 loc) · 1.23 KB
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
:root{
--bg-color: #852747;
--input-bg-color: #F5C6A5;
--send-color: #A2416B;
--a-color: #FF7777;
}
body{
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
background-color: var(--bg-color);
}
.message-container{
height: 85vh;
overflow-y: scroll;
}
form{
width: 100%;
display: flex;
justify-content: center;
}
#message-input{
width: 70%;
height: 40px;
border-radius: 50px;
border: solid 1px black;
border-bottom-right-radius: 0%;
border-top-right-radius: 0%;
border-right: none;
background-color: var(--input-bg-color);
}
#send-button{
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-weight: bold;
width: 65px;
border-radius: 50px;
border: solid 1px black;
border-bottom-left-radius: 0%;
border-top-left-radius: 0%;
background-color: var(--send-color);
}
#send-button:active{
scale: .96;
}
.message-container div{
width: 80%;
display: flex;
align-items: center;
padding-left: 20px;
background-color: var(--a-color);
height: 50px;
}
.message-container div:nth-child(2n){
background-color: brown;
}