-
Notifications
You must be signed in to change notification settings - Fork 23
/
style.css
56 lines (50 loc) · 817 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
body {
position:relative;
font-family:Helvetica;
margin:0px;
width:100%;
}
.header {
position:relative;
top:0px;
left:0px;
background-color:#f7f7f7;
height:105px;
width:100%;
border-bottom-style:solid;
border-bottom-width:1px;
border-bottom-color:#b2b2b2;
font-size:60pt;
}
.header .title {
position:relative;
top:10px;
text-align:center;
font-weight:bold;
}
.message {
position:relative;
width:100%;
display:inline-block;
padding-bottom:40px;
}
.message .style {
position:relative;
border-radius: 50px;
margin:40px;
padding-top:15px;
padding-bottom:15px;
padding-left:40px;
padding-right:40px;
display:inline-block;
max-width:60%;
font-size:40pt;
}
.message .outgoing {
float:right;
background-color:#00cd47;
color:#ffffff;
}
.message .incoming {
background-color:#e5e5ea;
}