-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
53 lines (48 loc) · 1.12 KB
/
styles.css
File metadata and controls
53 lines (48 loc) · 1.12 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
body {
font-family: "Arial", "monospace";
}
h1 {
text-align: center;
}
.chatBox {
display: flex;
align-items: flex-end;
margin: 0 auto;
width: 500px;
}
.chatMessages {
margin: 0 auto;
width: 500px;
}
.button {
display: inline-flex;
-webkit-box-align: center;
align-items: center;
-webkit-box-pack: center;
justify-content: center;
transition: border-color 0.25s ease-in-out, box-shadow 0.1s ease-in-out, background-color 0.25s ease-in-out, color 0.25s ease-in-out, outline-color 0.1s ease-in-out, z-index 0.25s ease-in-out;
margin: 0px;
border: 1px solid transparent;
border-radius: 4px;
cursor: pointer;
overflow: hidden;
text-decoration: none;
text-overflow: ellipsis;
white-space: nowrap;
font-family: inherit;
font-weight: 400;
-webkit-font-smoothing: subpixel-antialiased;
box-sizing: border-box;
user-select: none;
padding: 0px 1.07143em;
height: 40px;
line-height: 38px;
font-size: 14px;
outline-color: transparent;
background-color: rgb(31, 115, 183);
color: rgb(255, 255, 255);
margin-left: 5px;
}
.submitButton:hover {
background-color: rgb(41, 80, 193);;
}