-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (49 loc) · 1.05 KB
/
style.css
File metadata and controls
59 lines (49 loc) · 1.05 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
@import url('https://fonts.googleapis.com/css?family=Raleway&display=swap');
body {
padding: 0;
margin: 0;
display: flex;
font-size: 20px;
font-family: 'Raleway', sans-serif;
justify-content: center;
background: rgb(69, 125, 170);
}
.btn{
text-decoration: none;
text-align: center;
display: inline-block;
background-color: rgb(8, 60, 119);
border: none;
color: white;
padding: 16px 32px;
font-size: 25px;
margin: 2px;
font-family: 'Raleway', sans-serif;
}
#message-container {
width: 80%;
max-width: 1100px;
margin-bottom: 100px;
margin-top:20px;
}
#message-container div {
padding: 7px;
background-color: rgb(105, 176, 223);
}
#message-container div:nth-child(2n) {
background-color: white;
}
#send-container {
position: fixed;
margin-top: 30px;
padding-bottom: 25px;
max-width: 1100px;
width: 80%;
bottom: 0;
display: flex;
background: rgb(69, 125, 170);
}
#message-input {
flex-grow: 1;
padding: 10px;
}