-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (53 loc) · 834 Bytes
/
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto Condensed', sans-serif;
margin: 0;
color: #244751;
background-color: lightgray;
}
main {
width: 450px;
margin: 20px auto;
padding: 2em;
background-color: white;
border: 1px solid black;
border-radius: 10px;
}
input[type=text] {
border: solid 1px #244751;
padding: .5em;
font-size: 1em;
}
button {
padding: .5em;
background-color: white;
border: solid 1px #244751;
display: inline-block;
}
form {
border-top: 1px solid black;
margin-top: 10px;
padding-top: 10px;
}
#you {
width: 50px;
}
#m {
width: 284px;
}
#messages {
list-style-type: none;
margin: 0;
padding: 0;
}
#messages li {
padding: 5px 10px;
background: #ddd;
}
#messages li:nth-child(odd) {
background: #eee;
}