-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
76 lines (68 loc) · 1.29 KB
/
style.css
File metadata and controls
76 lines (68 loc) · 1.29 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
body {
display: flex;
justify-content: center;
align-items: center;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
background-color: #f0f0f0;
margin: 5rem 0;
}
.container {
width: 60%;
border-radius: 15px;
padding: 0.5rem;
background-color: white;
}
#messages {
height: 300px;
overflow-y: scroll;
font-size: 1.2rem;
margin: 2rem;
line-height: 2rem;
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
"Lucida Sans", Arial, sans-serif;
}
.flexbox {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
margin: 0 1rem;
height: 5rem;
}
#inputBox {
width: 100%;
height: 2rem;
margin: 0;
border: 0;
outline: none;
border-radius: 5px;
}
#send {
width: 100%;
height: 2rem;
border: 0;
border-radius: 5px;
background-color: green;
outline: none;
color: white;
transition: 0.5s;
}
#send:hover {
background-color: #007000;
cursor: pointer;
transform: scaleX(1.01);
}
/* ScrollBar */
::-webkit-scrollbar {
width: 1rem;
}
::-webkit-scrollbar-track {
background-color: whitesmoke;
border-radius: 1rem;
}
::-webkit-scrollbar-thumb {
background-color: gray;
border-radius: 1rem;
border: 0.35rem solid transparent;
background-clip: content-box;
}